Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
Any command line tools for splitting video files?By video files,i mean wmv,avi,mpg,mp4,mov,etc
all those common video formats |
#2
|
|||
|
|||
Re: Any command line tools for splitting video files?Well,
If you are comfortable with using the command line, FFmpeg will do this for you. Your command might look something like this: Code:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -t is the length of time in hh:mm:ss of your new segment. So, in the above example, you're starting 10 seconds in from the beginning of the original file and ending 30 seconds later. If you want to create multiple parts in one pass then the following should work: Code:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg If you want some other NON-command line options, let me know and I can recomend a few..this is the only one of this type I know of. |
#3
|
|||
|
|||
Re: Any command line tools for splitting video files?thanks for your response
|
#4
|
|||
|
|||
Re: Any command line tools for splitting video files? |
Tags: avi, command line, mp4, mpg, splitting, splitting video, splitting videos, wmv |
Thread Tools | |
Display Modes | |
|
|