View Single Post
Old 08-31-2007, 04:34 PM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,372
Quote:
Originally Posted by calmlikeabomb View Post
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.
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote