Quote:
Originally Posted by calmlikeabomb
using FFMPEG you can split mpgs files like this:
Code:
ffmpeg -y -i video.mpg -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:15 video_part1.mpg
where
-y forces an overwrite
-i video.mpg is the input file
-vcodec copy, reuses existing video codecs
-acodec copy, reuses existing audio codecs
-ss 00:00:00, is the start time
-t 00:00:15, is the end time (15 seconds)
video_part1.mpg, is the output file
If you want to convert mpg to flv then split you can do:
Code:
ffmpeg -y -i video.mpg video.flv;
ffmpeg -y -i video.mpg -ss 00:00:00 -t 00:00:15 video_part1.mpg
When converting wmv to any format I always loose the a/v sync.
I'd like to know if anyone here has a solution or can share their wmv conversion methods...
|
can you please hit me up? i been trying to reach you for over 2 weeks now, i cant update my site, jfc is broken, i tried aim, email, nothing. thanks.