I would like to run ffmpeg as follows:
ffmpeg.exe -i {filepath} -crf 0 ????????
The ???????? part needs to be the same directory and file name as the input file but with an extension of MP4
Example: ffmpeg.exe -i test.webm -crf 0 test.mp4
How do I write the ???????? part?
Thanks