Quote:
Originally Posted by brokecollegekid86
Hi all...
Having no clue what I was doing, I just let it go pretty much all day... and now I have this insane file... and still don't know what to do.  Any further assistance is appreciated.
I have a 19.7 GB .ts file that's almost 7 hours of video... lol. Not complaining because I watched it and verified that I got what I was looking for (several times over)...
Just trying to figure out now how to trim it and convert into something like mp4 so I can save it on my iPad. (and upload to YouTube for my BH fam).
|
first trim it
Code:
ffmpeg -i nkotb.ts -ss 00:24:15.00 -t 01:15:07.00 -c copy nkotb-trimed.ts
it start trim at 00hour 24minutes and 00 second during 1hour 15minutes 07secondes so trim from 00:24:15.00 to 01:39:22.00
and after re-mux
Code:
ffmpeg -i nkotb-trimed.ts -c copy -absf aac_adtstoasc nkotb.mp4