WARNING: This project is still developing
Extensible file converter.
Today's file convertors always focus on a few file types, they build in some library like FFmpeg and provide a GUI for users.
But in my opinion, it's not enough and we couldn't stop at this. So convevo was born:
To be a universal solution. You should not care about different software's different behavior.
Parallelized. Let's take advantage of all of your CPU cores.
Flexible and extensible. Load file type supports from profile pack
, you could even make your own profile pack
to support more files.
```toml [order] parent = 'ffmpeg_mp3'
[presets.global] inputdir = '.\input' outputdir = '.\output' threads_count = 0 # set to process count
[presets.ffmpeg] program = 'Z:\ffmpeg-n4.4-17-win64-gpl-shared\bin\ffmpeg.exe' argstemplate = '-y -i {inputfile} {argsswitches} {outputfile}'
[presets.ffmpegmp3] parent = 'ffmpeg' argsswitches = '-c:a libmp3lame -b:a 192k -q:a 0'
output_extension = 'mp3'
[presets.ffmpegextractaudio] parent = 'ffmpeg' argsswitches = '-vn -sn -c:a copy -y -map 0:a:0' outputextension = 'm4a'
[presets.ffmpegslice]
parent = 'ffmpeg'
argsswitches = '-ss 00:01:23.00 -to 00:02:34.00 ' # -ss
[presets.inkscapepdf] program = 'Z:\inkscape-1.1-x64\bin\inkscape.exe' argstemplate = '--pdf-page {repeatnum} {argsswitches} -o {outputfile} {inputfile}' outputsuffixserial = true
[presets.inkscapepdf2png] parent = 'inkscapepdf' argsswitches = '--export-type png --export-width 2560 --export-background #ffffff --pdf-poppler' outputextension = 'png' ```
https://wiki.inkscape.org/wiki/Using_the_Command_Line
https://inkscape.org/doc/inkscape-man.html
https://github.com/amadvance/advancecomp