View Single Post
  #99  
Old 11-16-2016, 06:24 PM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

Re: Studio66tv problem


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.
Reply With Quote