Quoted By:
I have two programs that run via cmd: FFmpeg for converting videos to webms and another program called youtube-dl that lets me download videos from various websites. I'm pretty sure that youtube-dl uses Python but I was hoping I could make a config file for my FFmpeg like I can with youtube-dl.
Youtube-dl has a config file that allows me to save commands in it so I don't have to type them every time I use the program. So instead of typing
"youtube-dl [video link] -o ~/desktop/%(title)s.%(ext)s -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' --merge-output-format mp4" I just have to type "youtube-dl [video link]" and it automatically applies the rest because of my config file.
I want to know if doing something like this is possible with FFmpeg programs so instead of having to edit, copy, and paste along command into cmd, I could just type the main parts of it and have a config file add in the rest.