Is their anyway to batch convert the flv?
atm i'm using but it only converts one at a time
Code:
ffmpeg -i %1 -acodec copy -vcodec copy -copyts %1.mp4
I then do this to list all the freshly converted flvs to mp4s
Code:
(for %%i in (*.mp4) do @echo file '%%i') > mylist.txt
Then merge into one mp4
Code:
ffmpeg -f concat -i mylist.txt -c copy output.mp4
I need to find a way to trim a second or so from every segment though as they overlap.