What to use to quickly cut Audio/Video
up vote
133
down vote
favorite
If just need to crop Audio/Video from a longer track, what can I use? I tried OpenShot, but I find the export video slow, perhaps its compling all the "layers" into a new movie? Perhaps I just need a simple "crop" tool for audio/video will surfice?
software-recommendation video-editor sound-editor
add a comment |
up vote
133
down vote
favorite
If just need to crop Audio/Video from a longer track, what can I use? I tried OpenShot, but I find the export video slow, perhaps its compling all the "layers" into a new movie? Perhaps I just need a simple "crop" tool for audio/video will surfice?
software-recommendation video-editor sound-editor
What sort of video formats are you dealing with? Are you looking for a GUI or a CLI solution?
– fossfreedom♦
Aug 6 '11 at 11:21
1
Formats will be probably mp4, flv, mp3. GUI or CLI will be fine.
– Jiew Meng
Aug 6 '11 at 13:06
see superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
– Dennis Golomazov
Sep 5 '13 at 13:57
add a comment |
up vote
133
down vote
favorite
up vote
133
down vote
favorite
If just need to crop Audio/Video from a longer track, what can I use? I tried OpenShot, but I find the export video slow, perhaps its compling all the "layers" into a new movie? Perhaps I just need a simple "crop" tool for audio/video will surfice?
software-recommendation video-editor sound-editor
If just need to crop Audio/Video from a longer track, what can I use? I tried OpenShot, but I find the export video slow, perhaps its compling all the "layers" into a new movie? Perhaps I just need a simple "crop" tool for audio/video will surfice?
software-recommendation video-editor sound-editor
software-recommendation video-editor sound-editor
edited Oct 26 '14 at 17:55
landroni
4,21162149
4,21162149
asked Aug 6 '11 at 10:55
Jiew Meng
3,259206391
3,259206391
What sort of video formats are you dealing with? Are you looking for a GUI or a CLI solution?
– fossfreedom♦
Aug 6 '11 at 11:21
1
Formats will be probably mp4, flv, mp3. GUI or CLI will be fine.
– Jiew Meng
Aug 6 '11 at 13:06
see superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
– Dennis Golomazov
Sep 5 '13 at 13:57
add a comment |
What sort of video formats are you dealing with? Are you looking for a GUI or a CLI solution?
– fossfreedom♦
Aug 6 '11 at 11:21
1
Formats will be probably mp4, flv, mp3. GUI or CLI will be fine.
– Jiew Meng
Aug 6 '11 at 13:06
see superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
– Dennis Golomazov
Sep 5 '13 at 13:57
What sort of video formats are you dealing with? Are you looking for a GUI or a CLI solution?
– fossfreedom♦
Aug 6 '11 at 11:21
What sort of video formats are you dealing with? Are you looking for a GUI or a CLI solution?
– fossfreedom♦
Aug 6 '11 at 11:21
1
1
Formats will be probably mp4, flv, mp3. GUI or CLI will be fine.
– Jiew Meng
Aug 6 '11 at 13:06
Formats will be probably mp4, flv, mp3. GUI or CLI will be fine.
– Jiew Meng
Aug 6 '11 at 13:06
see superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
– Dennis Golomazov
Sep 5 '13 at 13:57
see superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
– Dennis Golomazov
Sep 5 '13 at 13:57
add a comment |
19 Answers
19
active
oldest
votes
up vote
143
down vote
accepted
- Avidemux (From PPA) - http://avidemux.sourceforge.net/
- OpenShot (From PPA) - https://launchpad.net/openshot/ http://www.openshot.org/ppa/
- Pitivi (From PPA) - http://www.pitivi.org/?go=download
I was going to mention commands like ffmpeg or avconv (The new one) which can OBVIOUSLY split files into groups. For example:
FFMPEG
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
ffmpeg -ss 0 -t 100 -i source.m4v -vcodec copy -acodec copy part1.m4v
ffmpeg -ss 100 -t 100 -i source.m4v -vcodec copy -acodec copy part2.m4v
ffmpeg -ss 200 -t 100 -i source.m4v -vcodec copy -acodec copy part3.m4v
ffmpeg -ss 300 -t 100 -i source.m4v -vcodec copy -acodec copy part4.m4v
AVCONV
avconv -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
avconv -ss 0 -i source.m4v -t 100 -vcodec copy -acodec copy part1.m4v
avconv -ss 100 -i source.m4v -t 100 -vcodec copy -acodec copy part2.m4v
avconv -ss 200 -i source.m4v -t 100 -vcodec copy -acodec copy part3.m4v
avconv -ss 300 -i source.m4v -t 100 -vcodec copy -acodec copy part4.m4v
Or do some script like here: http://icephoenix.us/notes-for-myself/auto-splitting-video-file-in-equal-chunks-with-ffmpeg-and-python/
5
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
1
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
1
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
|
show 6 more comments
up vote
31
down vote
kdenlive is (in my experience) the easiest software which will allow you to perform that task in a few steps and without problems. Even so, the OpenShot Video Editor project is also useful but it yet needs lots of hard work to get closer to the kdenlive.
Here are a screenshot of the kdenlive and openshot respectively:


Good luck!
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
1
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
2
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawnsavconvand whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ranavconv. Definitely a non-choice for one willing simply to trim a video file.
– Incnis Mrsi
Aug 22 '15 at 11:07
1
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
|
show 2 more comments
up vote
29
down vote
With new version from ubuntu avconv
avconv -i srcFileName -c:a copy -c:v copy -ss 00:03:40 -t 00:01:12 targetFileName
- First argument time is from time
- Second argument is duration (not end time) duration may be either in seconds or in "hh:mm:ss[.xxx]" form.
Please refer to ffmpeg documentation for more informations
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Thanks Philippe! This helped me a lot. can I ask what the args-c:a copy -c:v copymean?
– Alex
Jan 3 '16 at 9:43
2
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
1
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
|
show 1 more comment
up vote
13
down vote
I like kdenlive for finishing up as well or clipping out small chunks...but if he wants to split a LARGE lecture into smaller pieces he could try:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg
discussion of the command is here: http://ubuntuforums.org/showthread.php?t=480343
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
add a comment |
up vote
7
down vote
OpenShot Video Editor looks promising. Have you checked it?. Checkout the features: http://www.openshot.org/features/
To install it just open a terminal and run the following commands:
sudo add-apt-repository ppa:jonoomph/openshot-edge
sudo apt-get update
sudo apt-get install openshot openshot-doc
Just give a try.

If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
add a comment |
up vote
5
down vote
My preference for easy video clipping has always been avidemux.

Just set the video and audio encoding to Copy and choose the container format you want, within reason.
add a comment |
up vote
3
down vote
Try Avidemux
sudo apt-get install avidemux
or LiVES
sudo apt-get install lives
more
here (Dead link, redirects to random commercial sites)http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
add a comment |
up vote
2
down vote
I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:
- Create a new project with your full lecture.
- Set your start and end points for the first "manageable chunk" in the clip monitor.
- Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.
- Set new start and end points in the clip monitor and repeat as needed.
1
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
add a comment |
up vote
2
down vote
For cutting, merging, scaling etc one can use … Blender (yes, this 3D editor, but it has also video editing part). You need workout some 20-min tutorial to survive the interface, but then it appears to be unexpectedly pleasant to use.
add a comment |
up vote
2
down vote
I'm using ffmpeg CLI interface for that. It's very easy and fast:
to cut video:
ffmpeg -i InputFile -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
to cut audio:
ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
In both of these -ss is the start point, while -t is the duration of the piece.
You can calculate duration e.g. using LibreOffice Calc or python's dateutil package.
add a comment |
up vote
2
down vote
There is also WinFF that is avconv graphic interface. It works great. I installed it from Ubuntu Software Center.
Here is the screenshot:

add a comment |
up vote
1
down vote
In PiTiVi 0.13.5 (Ubuntu 10.10) I was able to simply select a clip and go to Timeline > Split (or just press "S").
add a comment |
up vote
1
down vote
For quickly cutting I have used MythTV. I recorded some show, let it automatically search for the commercial breaks and fine-tuned the found markers. After this I started the Myth archiving function and burned all to DVD, without the commercials.
I have to admit, it worked gread from about 2006 or such. Somewhere in 2008 or 2009 some update ruined it all, my markers where somehow shifted.
Right now, I'm in the progress of re-installing this myth stuff, just to see if I can get the trimmer/editor and archiver working.
add a comment |
up vote
1
down vote
I am running into the same trouble.
I have searched and tried to install this sort of ubuntu software
for many times, but unable to install any of them!
Perhaps my repository is broken?
It always says this depends that,
this depends A but B is going to be installed
Yesterday I just found that I can do it online,
With a youtube account:) If you are in a hurry, and do not have
enough time to try which ubuntu software works for you,
then do it online.
Go to youtube account, upload your video, then
select
Video Manager,
there is a Enhancement option,
at the bottom right corner there lies Trim option
Watch this 1 minute tutorial if you still can not find it

add a comment |
up vote
1
down vote
vidcutter is a very useful tool for cutting, trimming and merging videos in ubuntu:
Install vidcutter:
sudo add-apt-repository ppa:ozmartian/apps
sudo apt update
sudo apt install vidcutter
works in ubuntu 17.10
add a comment |
up vote
0
down vote
Pitivi too complex? Well... I suggest you learn how to use the mouse then lol
Anyway, I always use Kdenlive.
Just import the video, drag it onto the timeline, click on the spot where you want to split it, right-click it, and choose cut. Then remove the part you don't need.
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
1
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
add a comment |
up vote
0
down vote
If you want a GUI application you can use dmMediaConverter, a ffmpeg frontend, which has a split function, without reencoding, fast. Just add the split points and press Run. Also, it can do a lot of other stuff.
http://dmsimpleapps.blogspot.ro/2014/04/dmmediaconverter.html

Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
add a comment |
up vote
0
down vote
I've struggled with this same issue, having a large video file that I want to cut and save as separate scenes. After trying to do this in the usual suspects all listed by others here I ended up using Kino.
You will have to import the file as Kino needs it in dv format (whatever that is) and you can then specify start and end point for each clip on the Edit tab, then export each clip individually on the Export tab. Works great and is fast, the slowest part is the initial import of the video file. You can even add effects like titles to each clip.
I found that it is hard to find the exact spot to cut the scene in Kino and when I play the vid in the built in player there is no sound (there is when exported) and it plays too fast so I play the video in avidemux, find the time or frame number where I want to cut it, then use this info in Kino.
I do find it crashes a fair bit (I use Ubuntu 15.04 Kino v1.3.4) but it will recover where you were upon restart.
Update on the Kino webpage:
Kino is a dead project
( 05.08.2013 14:15 )
Kino has not been actively maintained since 2009. We encourage you to try other Linux video editors such as Shotcut, Kdenlive, Flowblade, OpenShot, PiTiVi, LiVES, and LightWorks.
add a comment |
up vote
0
down vote
LosslessCut is focused entirely on clipping/cutting, is simple to use and does not re-encode, meaning saving to disk is pretty much instant.

To ensure audio remains synced with image, use the keyframe cut option.
add a comment |
protected by Community♦ May 27 '17 at 22:06
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
19 Answers
19
active
oldest
votes
19 Answers
19
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
143
down vote
accepted
- Avidemux (From PPA) - http://avidemux.sourceforge.net/
- OpenShot (From PPA) - https://launchpad.net/openshot/ http://www.openshot.org/ppa/
- Pitivi (From PPA) - http://www.pitivi.org/?go=download
I was going to mention commands like ffmpeg or avconv (The new one) which can OBVIOUSLY split files into groups. For example:
FFMPEG
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
ffmpeg -ss 0 -t 100 -i source.m4v -vcodec copy -acodec copy part1.m4v
ffmpeg -ss 100 -t 100 -i source.m4v -vcodec copy -acodec copy part2.m4v
ffmpeg -ss 200 -t 100 -i source.m4v -vcodec copy -acodec copy part3.m4v
ffmpeg -ss 300 -t 100 -i source.m4v -vcodec copy -acodec copy part4.m4v
AVCONV
avconv -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
avconv -ss 0 -i source.m4v -t 100 -vcodec copy -acodec copy part1.m4v
avconv -ss 100 -i source.m4v -t 100 -vcodec copy -acodec copy part2.m4v
avconv -ss 200 -i source.m4v -t 100 -vcodec copy -acodec copy part3.m4v
avconv -ss 300 -i source.m4v -t 100 -vcodec copy -acodec copy part4.m4v
Or do some script like here: http://icephoenix.us/notes-for-myself/auto-splitting-video-file-in-equal-chunks-with-ffmpeg-and-python/
5
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
1
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
1
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
|
show 6 more comments
up vote
143
down vote
accepted
- Avidemux (From PPA) - http://avidemux.sourceforge.net/
- OpenShot (From PPA) - https://launchpad.net/openshot/ http://www.openshot.org/ppa/
- Pitivi (From PPA) - http://www.pitivi.org/?go=download
I was going to mention commands like ffmpeg or avconv (The new one) which can OBVIOUSLY split files into groups. For example:
FFMPEG
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
ffmpeg -ss 0 -t 100 -i source.m4v -vcodec copy -acodec copy part1.m4v
ffmpeg -ss 100 -t 100 -i source.m4v -vcodec copy -acodec copy part2.m4v
ffmpeg -ss 200 -t 100 -i source.m4v -vcodec copy -acodec copy part3.m4v
ffmpeg -ss 300 -t 100 -i source.m4v -vcodec copy -acodec copy part4.m4v
AVCONV
avconv -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
avconv -ss 0 -i source.m4v -t 100 -vcodec copy -acodec copy part1.m4v
avconv -ss 100 -i source.m4v -t 100 -vcodec copy -acodec copy part2.m4v
avconv -ss 200 -i source.m4v -t 100 -vcodec copy -acodec copy part3.m4v
avconv -ss 300 -i source.m4v -t 100 -vcodec copy -acodec copy part4.m4v
Or do some script like here: http://icephoenix.us/notes-for-myself/auto-splitting-video-file-in-equal-chunks-with-ffmpeg-and-python/
5
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
1
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
1
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
|
show 6 more comments
up vote
143
down vote
accepted
up vote
143
down vote
accepted
- Avidemux (From PPA) - http://avidemux.sourceforge.net/
- OpenShot (From PPA) - https://launchpad.net/openshot/ http://www.openshot.org/ppa/
- Pitivi (From PPA) - http://www.pitivi.org/?go=download
I was going to mention commands like ffmpeg or avconv (The new one) which can OBVIOUSLY split files into groups. For example:
FFMPEG
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
ffmpeg -ss 0 -t 100 -i source.m4v -vcodec copy -acodec copy part1.m4v
ffmpeg -ss 100 -t 100 -i source.m4v -vcodec copy -acodec copy part2.m4v
ffmpeg -ss 200 -t 100 -i source.m4v -vcodec copy -acodec copy part3.m4v
ffmpeg -ss 300 -t 100 -i source.m4v -vcodec copy -acodec copy part4.m4v
AVCONV
avconv -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
avconv -ss 0 -i source.m4v -t 100 -vcodec copy -acodec copy part1.m4v
avconv -ss 100 -i source.m4v -t 100 -vcodec copy -acodec copy part2.m4v
avconv -ss 200 -i source.m4v -t 100 -vcodec copy -acodec copy part3.m4v
avconv -ss 300 -i source.m4v -t 100 -vcodec copy -acodec copy part4.m4v
Or do some script like here: http://icephoenix.us/notes-for-myself/auto-splitting-video-file-in-equal-chunks-with-ffmpeg-and-python/
- Avidemux (From PPA) - http://avidemux.sourceforge.net/
- OpenShot (From PPA) - https://launchpad.net/openshot/ http://www.openshot.org/ppa/
- Pitivi (From PPA) - http://www.pitivi.org/?go=download
I was going to mention commands like ffmpeg or avconv (The new one) which can OBVIOUSLY split files into groups. For example:
FFMPEG
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
ffmpeg -ss 0 -t 100 -i source.m4v -vcodec copy -acodec copy part1.m4v
ffmpeg -ss 100 -t 100 -i source.m4v -vcodec copy -acodec copy part2.m4v
ffmpeg -ss 200 -t 100 -i source.m4v -vcodec copy -acodec copy part3.m4v
ffmpeg -ss 300 -t 100 -i source.m4v -vcodec copy -acodec copy part4.m4v
AVCONV
avconv -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
avconv -ss 0 -i source.m4v -t 100 -vcodec copy -acodec copy part1.m4v
avconv -ss 100 -i source.m4v -t 100 -vcodec copy -acodec copy part2.m4v
avconv -ss 200 -i source.m4v -t 100 -vcodec copy -acodec copy part3.m4v
avconv -ss 300 -i source.m4v -t 100 -vcodec copy -acodec copy part4.m4v
Or do some script like here: http://icephoenix.us/notes-for-myself/auto-splitting-video-file-in-equal-chunks-with-ffmpeg-and-python/
edited Sep 15 '14 at 3:49
fikr4n
7202922
7202922
answered Aug 6 '11 at 15:22
Luis Alvarado♦
143k135484649
143k135484649
5
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
1
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
1
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
|
show 6 more comments
5
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
1
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
1
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
5
5
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
Beware: According to the man page [ linux.die.net/man/1/ffmpeg ] this results in unnatural, overlapping cuts. For instance, the second command starts at 00:30:00 but goes on for an hour; i.e., up to 01:30:00, so the third command, which starts at 01:00:00, will yield an overlapping cut. It may be the goal, but it wouldn't be very natural.
– ezequiel-garzon
Sep 24 '12 at 22:12
1
1
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
I can vouch for what ezequiel mentions. When doing the tests with ffmpeg or avconv the overlapping effect appears if using the times as mentioned above. I will update to a more accurate effect although I should mention that the first second will also overlap. I will fix both and add avconv to the group. Thanks ezequiel.
– Luis Alvarado♦
Sep 25 '12 at 3:00
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks! But these ppa versions are out-of-date. Are the versions in Precise 12.04 good? Or can someone suggest better ones?
– nealmcb
Oct 14 '13 at 14:47
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
Thanks for notifying me. When I get back home I'll post an updated link.
– Luis Alvarado♦
Oct 14 '13 at 15:03
1
1
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
At least when using avconv you don't need to invoke the video and audio codec separately. You should just go with $ avcon -i input-file -codec copy [any option like -ss -t -fs ... just check on ubuntu.manpages.com for avconv] output-file
– Antonio
Jan 3 '16 at 0:20
|
show 6 more comments
up vote
31
down vote
kdenlive is (in my experience) the easiest software which will allow you to perform that task in a few steps and without problems. Even so, the OpenShot Video Editor project is also useful but it yet needs lots of hard work to get closer to the kdenlive.
Here are a screenshot of the kdenlive and openshot respectively:


Good luck!
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
1
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
2
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawnsavconvand whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ranavconv. Definitely a non-choice for one willing simply to trim a video file.
– Incnis Mrsi
Aug 22 '15 at 11:07
1
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
|
show 2 more comments
up vote
31
down vote
kdenlive is (in my experience) the easiest software which will allow you to perform that task in a few steps and without problems. Even so, the OpenShot Video Editor project is also useful but it yet needs lots of hard work to get closer to the kdenlive.
Here are a screenshot of the kdenlive and openshot respectively:


Good luck!
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
1
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
2
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawnsavconvand whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ranavconv. Definitely a non-choice for one willing simply to trim a video file.
– Incnis Mrsi
Aug 22 '15 at 11:07
1
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
|
show 2 more comments
up vote
31
down vote
up vote
31
down vote
kdenlive is (in my experience) the easiest software which will allow you to perform that task in a few steps and without problems. Even so, the OpenShot Video Editor project is also useful but it yet needs lots of hard work to get closer to the kdenlive.
Here are a screenshot of the kdenlive and openshot respectively:


Good luck!
kdenlive is (in my experience) the easiest software which will allow you to perform that task in a few steps and without problems. Even so, the OpenShot Video Editor project is also useful but it yet needs lots of hard work to get closer to the kdenlive.
Here are a screenshot of the kdenlive and openshot respectively:


Good luck!
edited Aug 17 '15 at 20:23
answered Aug 22 '11 at 19:59
Geppettvs D'Constanzo
16.2k43282
16.2k43282
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
1
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
2
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawnsavconvand whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ranavconv. Definitely a non-choice for one willing simply to trim a video file.
– Incnis Mrsi
Aug 22 '15 at 11:07
1
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
|
show 2 more comments
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
1
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
2
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawnsavconvand whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ranavconv. Definitely a non-choice for one willing simply to trim a video file.
– Incnis Mrsi
Aug 22 '15 at 11:07
1
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
Kdenlive is my favourite. All other linux editors crashed when using MOV files from my Kodak Zi8 camera. Easy to use and very powerful.
– Ramon Suarez
Jun 16 '12 at 6:52
1
1
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Not sure what's going on with my edit. Looks fine in editing mode but here its messed up.
– Insperatus
Sep 5 '12 at 20:59
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
Sorry, I can't understand. Do you mind giving further details? If you think necessary please open a question about your issues. Thank you!
– Geppettvs D'Constanzo
Sep 5 '12 at 21:17
2
2
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawns
avconv and whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ran avconv. Definitely a non-choice for one willing simply to trim a video file.– Incnis Mrsi
Aug 22 '15 at 11:07
The easiest software Kdenlive asks a hell of irrelevant questions before even starting a project. But when about to do something, it spawns
avconv and whenever it fails, Kdenlive won't offer help tp rectify situation and even doesn't report with which exactly parameters it ran avconv. Definitely a non-choice for one willing simply to trim a video file.– Incnis Mrsi
Aug 22 '15 at 11:07
1
1
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
Personally, kdenlive seemed good, but the interface is very unintuitive and unnecessarily complex. Also, there seems to be some bug. After loading a clip, sometimes the clip plays. Sometimes it doesn't. Not recommended.
– Nav
Jul 23 '17 at 19:47
|
show 2 more comments
up vote
29
down vote
With new version from ubuntu avconv
avconv -i srcFileName -c:a copy -c:v copy -ss 00:03:40 -t 00:01:12 targetFileName
- First argument time is from time
- Second argument is duration (not end time) duration may be either in seconds or in "hh:mm:ss[.xxx]" form.
Please refer to ffmpeg documentation for more informations
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Thanks Philippe! This helped me a lot. can I ask what the args-c:a copy -c:v copymean?
– Alex
Jan 3 '16 at 9:43
2
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
1
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
|
show 1 more comment
up vote
29
down vote
With new version from ubuntu avconv
avconv -i srcFileName -c:a copy -c:v copy -ss 00:03:40 -t 00:01:12 targetFileName
- First argument time is from time
- Second argument is duration (not end time) duration may be either in seconds or in "hh:mm:ss[.xxx]" form.
Please refer to ffmpeg documentation for more informations
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Thanks Philippe! This helped me a lot. can I ask what the args-c:a copy -c:v copymean?
– Alex
Jan 3 '16 at 9:43
2
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
1
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
|
show 1 more comment
up vote
29
down vote
up vote
29
down vote
With new version from ubuntu avconv
avconv -i srcFileName -c:a copy -c:v copy -ss 00:03:40 -t 00:01:12 targetFileName
- First argument time is from time
- Second argument is duration (not end time) duration may be either in seconds or in "hh:mm:ss[.xxx]" form.
Please refer to ffmpeg documentation for more informations
With new version from ubuntu avconv
avconv -i srcFileName -c:a copy -c:v copy -ss 00:03:40 -t 00:01:12 targetFileName
- First argument time is from time
- Second argument is duration (not end time) duration may be either in seconds or in "hh:mm:ss[.xxx]" form.
Please refer to ffmpeg documentation for more informations
edited Jan 4 '16 at 10:52
answered Sep 26 '13 at 10:54
Philippe Gachoud
3,1772537
3,1772537
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Thanks Philippe! This helped me a lot. can I ask what the args-c:a copy -c:v copymean?
– Alex
Jan 3 '16 at 9:43
2
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
1
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
|
show 1 more comment
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Thanks Philippe! This helped me a lot. can I ask what the args-c:a copy -c:v copymean?
– Alex
Jan 3 '16 at 9:43
2
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
1
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Thanks, an expert. Damn me not to read third-rated answer in the thread before doing anything. Without this examples Ī̲’d fail to turn off video recoding (“-vn” failed to produce this effect, for some reason) and would also have other problems. By the way, does “-c:s copy” make the same thing for subtitles?
– Incnis Mrsi
Aug 22 '15 at 11:24
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Also, since my experience, when cutting out only the last part (i.e. when beginning of the new video coincides with beginning of the original video) “-ss 0” is potentially problematical and should be omitted. Ī̲ had a program (namely, Bombono DVD) crashed trying to read a file made with “-ss 0” substituted in place of the original file.
– Incnis Mrsi
Aug 22 '15 at 12:01
Thanks Philippe! This helped me a lot. can I ask what the args
-c:a copy -c:v copy mean?– Alex
Jan 3 '16 at 9:43
Thanks Philippe! This helped me a lot. can I ask what the args
-c:a copy -c:v copy mean?– Alex
Jan 3 '16 at 9:43
2
2
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
@Alex c=codec a=audio v=video
– Philippe Gachoud
Jan 3 '16 at 20:03
1
1
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
@Alex copy to copy the audio codec and video codec to the target stream. See more @ ffmpeg.org/ffmpeg.html#Main-options and refer to the ffmpeg documentation for more informations
– Philippe Gachoud
Jan 4 '16 at 10:51
|
show 1 more comment
up vote
13
down vote
I like kdenlive for finishing up as well or clipping out small chunks...but if he wants to split a LARGE lecture into smaller pieces he could try:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg
discussion of the command is here: http://ubuntuforums.org/showthread.php?t=480343
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
add a comment |
up vote
13
down vote
I like kdenlive for finishing up as well or clipping out small chunks...but if he wants to split a LARGE lecture into smaller pieces he could try:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg
discussion of the command is here: http://ubuntuforums.org/showthread.php?t=480343
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
add a comment |
up vote
13
down vote
up vote
13
down vote
I like kdenlive for finishing up as well or clipping out small chunks...but if he wants to split a LARGE lecture into smaller pieces he could try:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg
discussion of the command is here: http://ubuntuforums.org/showthread.php?t=480343
I like kdenlive for finishing up as well or clipping out small chunks...but if he wants to split a LARGE lecture into smaller pieces he could try:
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg
discussion of the command is here: http://ubuntuforums.org/showthread.php?t=480343
edited Mar 1 '14 at 19:56
Seth♦
33.7k26110160
33.7k26110160
answered Nov 11 '10 at 12:50
RobotHumans
22.7k362103
22.7k362103
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
add a comment |
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
you can use winff (GUI for ffmpeg) also
– jahid65
Aug 6 '11 at 17:36
add a comment |
up vote
7
down vote
OpenShot Video Editor looks promising. Have you checked it?. Checkout the features: http://www.openshot.org/features/
To install it just open a terminal and run the following commands:
sudo add-apt-repository ppa:jonoomph/openshot-edge
sudo apt-get update
sudo apt-get install openshot openshot-doc
Just give a try.

If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
add a comment |
up vote
7
down vote
OpenShot Video Editor looks promising. Have you checked it?. Checkout the features: http://www.openshot.org/features/
To install it just open a terminal and run the following commands:
sudo add-apt-repository ppa:jonoomph/openshot-edge
sudo apt-get update
sudo apt-get install openshot openshot-doc
Just give a try.

If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
add a comment |
up vote
7
down vote
up vote
7
down vote
OpenShot Video Editor looks promising. Have you checked it?. Checkout the features: http://www.openshot.org/features/
To install it just open a terminal and run the following commands:
sudo add-apt-repository ppa:jonoomph/openshot-edge
sudo apt-get update
sudo apt-get install openshot openshot-doc
Just give a try.

OpenShot Video Editor looks promising. Have you checked it?. Checkout the features: http://www.openshot.org/features/
To install it just open a terminal and run the following commands:
sudo add-apt-repository ppa:jonoomph/openshot-edge
sudo apt-get update
sudo apt-get install openshot openshot-doc
Just give a try.

answered Nov 11 '10 at 6:21
aneeshep
21.7k115574
21.7k115574
If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
add a comment |
If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
If he is using maverick it is in the repository
– Sabacon
Nov 11 '10 at 6:26
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
Openshot FTW! :)
– OpenNingia
Nov 11 '10 at 14:16
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
If the OP only wants to quickly crop video, then AVIDemux is far easier to use than OpenShot. I've just tried them both - OpenShot was surprisingly cumbers at just letting me define the in and out points for one video track.
– Dan Dascalescu
Jan 27 '16 at 22:40
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
OpenShot is definitely more user friendly than any of the other highly upvoted answers here.
– Nav
Jul 23 '17 at 20:10
add a comment |
up vote
5
down vote
My preference for easy video clipping has always been avidemux.

Just set the video and audio encoding to Copy and choose the container format you want, within reason.
add a comment |
up vote
5
down vote
My preference for easy video clipping has always been avidemux.

Just set the video and audio encoding to Copy and choose the container format you want, within reason.
add a comment |
up vote
5
down vote
up vote
5
down vote
My preference for easy video clipping has always been avidemux.

Just set the video and audio encoding to Copy and choose the container format you want, within reason.
My preference for easy video clipping has always been avidemux.

Just set the video and audio encoding to Copy and choose the container format you want, within reason.
edited Jan 28 '16 at 15:02
Kolappan Nathan
450619
450619
answered Nov 11 '10 at 6:35
Kees Cook
13.8k75791
13.8k75791
add a comment |
add a comment |
up vote
3
down vote
Try Avidemux
sudo apt-get install avidemux
or LiVES
sudo apt-get install lives
more
here (Dead link, redirects to random commercial sites)http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
add a comment |
up vote
3
down vote
Try Avidemux
sudo apt-get install avidemux
or LiVES
sudo apt-get install lives
more
here (Dead link, redirects to random commercial sites)http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
add a comment |
up vote
3
down vote
up vote
3
down vote
Try Avidemux
sudo apt-get install avidemux
or LiVES
sudo apt-get install lives
more
here (Dead link, redirects to random commercial sites)http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/
Try Avidemux
sudo apt-get install avidemux
or LiVES
sudo apt-get install lives
more
here (Dead link, redirects to random commercial sites)http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/
edited Mar 11 '17 at 19:00
Community♦
1
1
answered Aug 22 '11 at 18:40
TheShadowFog
263137
263137
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
add a comment |
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
– Lucio
Mar 1 '14 at 19:01
add a comment |
up vote
2
down vote
I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:
- Create a new project with your full lecture.
- Set your start and end points for the first "manageable chunk" in the clip monitor.
- Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.
- Set new start and end points in the clip monitor and repeat as needed.
1
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
add a comment |
up vote
2
down vote
I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:
- Create a new project with your full lecture.
- Set your start and end points for the first "manageable chunk" in the clip monitor.
- Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.
- Set new start and end points in the clip monitor and repeat as needed.
1
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
add a comment |
up vote
2
down vote
up vote
2
down vote
I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:
- Create a new project with your full lecture.
- Set your start and end points for the first "manageable chunk" in the clip monitor.
- Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.
- Set new start and end points in the clip monitor and repeat as needed.
I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:
- Create a new project with your full lecture.
- Set your start and end points for the first "manageable chunk" in the clip monitor.
- Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.
- Set new start and end points in the clip monitor and repeat as needed.
answered Nov 11 '10 at 5:58
esoltys
31325
31325
1
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
add a comment |
1
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
1
1
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
I've looked around, and I can't find any way to divide a long clip into multiple shorter clips that I can easily manage. There is no "clip monitor"; PiTiVi is very simple (and I mean that in a good way!) Obviously, I could just cut up the video and reorganize the unnamed chunks in the timeline, but I'd like to know if there's a better way.
– Evan Kroske
Nov 11 '10 at 6:05
add a comment |
up vote
2
down vote
For cutting, merging, scaling etc one can use … Blender (yes, this 3D editor, but it has also video editing part). You need workout some 20-min tutorial to survive the interface, but then it appears to be unexpectedly pleasant to use.
add a comment |
up vote
2
down vote
For cutting, merging, scaling etc one can use … Blender (yes, this 3D editor, but it has also video editing part). You need workout some 20-min tutorial to survive the interface, but then it appears to be unexpectedly pleasant to use.
add a comment |
up vote
2
down vote
up vote
2
down vote
For cutting, merging, scaling etc one can use … Blender (yes, this 3D editor, but it has also video editing part). You need workout some 20-min tutorial to survive the interface, but then it appears to be unexpectedly pleasant to use.
For cutting, merging, scaling etc one can use … Blender (yes, this 3D editor, but it has also video editing part). You need workout some 20-min tutorial to survive the interface, but then it appears to be unexpectedly pleasant to use.
answered Oct 15 '11 at 22:03
Mekk
386213
386213
add a comment |
add a comment |
up vote
2
down vote
I'm using ffmpeg CLI interface for that. It's very easy and fast:
to cut video:
ffmpeg -i InputFile -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
to cut audio:
ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
In both of these -ss is the start point, while -t is the duration of the piece.
You can calculate duration e.g. using LibreOffice Calc or python's dateutil package.
add a comment |
up vote
2
down vote
I'm using ffmpeg CLI interface for that. It's very easy and fast:
to cut video:
ffmpeg -i InputFile -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
to cut audio:
ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
In both of these -ss is the start point, while -t is the duration of the piece.
You can calculate duration e.g. using LibreOffice Calc or python's dateutil package.
add a comment |
up vote
2
down vote
up vote
2
down vote
I'm using ffmpeg CLI interface for that. It's very easy and fast:
to cut video:
ffmpeg -i InputFile -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
to cut audio:
ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
In both of these -ss is the start point, while -t is the duration of the piece.
You can calculate duration e.g. using LibreOffice Calc or python's dateutil package.
I'm using ffmpeg CLI interface for that. It's very easy and fast:
to cut video:
ffmpeg -i InputFile -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
to cut audio:
ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
In both of these -ss is the start point, while -t is the duration of the piece.
You can calculate duration e.g. using LibreOffice Calc or python's dateutil package.
edited Oct 6 '13 at 13:09
Aditya
9,183125489
9,183125489
answered Aug 26 '11 at 6:13
Adobe
2,32432040
2,32432040
add a comment |
add a comment |
up vote
2
down vote
There is also WinFF that is avconv graphic interface. It works great. I installed it from Ubuntu Software Center.
Here is the screenshot:

add a comment |
up vote
2
down vote
There is also WinFF that is avconv graphic interface. It works great. I installed it from Ubuntu Software Center.
Here is the screenshot:

add a comment |
up vote
2
down vote
up vote
2
down vote
There is also WinFF that is avconv graphic interface. It works great. I installed it from Ubuntu Software Center.
Here is the screenshot:

There is also WinFF that is avconv graphic interface. It works great. I installed it from Ubuntu Software Center.
Here is the screenshot:

edited Nov 16 '15 at 2:02
answered Nov 10 '15 at 5:56
Almas Dusal
34924
34924
add a comment |
add a comment |
up vote
1
down vote
In PiTiVi 0.13.5 (Ubuntu 10.10) I was able to simply select a clip and go to Timeline > Split (or just press "S").
add a comment |
up vote
1
down vote
In PiTiVi 0.13.5 (Ubuntu 10.10) I was able to simply select a clip and go to Timeline > Split (or just press "S").
add a comment |
up vote
1
down vote
up vote
1
down vote
In PiTiVi 0.13.5 (Ubuntu 10.10) I was able to simply select a clip and go to Timeline > Split (or just press "S").
In PiTiVi 0.13.5 (Ubuntu 10.10) I was able to simply select a clip and go to Timeline > Split (or just press "S").
answered Jan 26 '11 at 21:05
Jordan Uggla
3,15111315
3,15111315
add a comment |
add a comment |
up vote
1
down vote
For quickly cutting I have used MythTV. I recorded some show, let it automatically search for the commercial breaks and fine-tuned the found markers. After this I started the Myth archiving function and burned all to DVD, without the commercials.
I have to admit, it worked gread from about 2006 or such. Somewhere in 2008 or 2009 some update ruined it all, my markers where somehow shifted.
Right now, I'm in the progress of re-installing this myth stuff, just to see if I can get the trimmer/editor and archiver working.
add a comment |
up vote
1
down vote
For quickly cutting I have used MythTV. I recorded some show, let it automatically search for the commercial breaks and fine-tuned the found markers. After this I started the Myth archiving function and burned all to DVD, without the commercials.
I have to admit, it worked gread from about 2006 or such. Somewhere in 2008 or 2009 some update ruined it all, my markers where somehow shifted.
Right now, I'm in the progress of re-installing this myth stuff, just to see if I can get the trimmer/editor and archiver working.
add a comment |
up vote
1
down vote
up vote
1
down vote
For quickly cutting I have used MythTV. I recorded some show, let it automatically search for the commercial breaks and fine-tuned the found markers. After this I started the Myth archiving function and burned all to DVD, without the commercials.
I have to admit, it worked gread from about 2006 or such. Somewhere in 2008 or 2009 some update ruined it all, my markers where somehow shifted.
Right now, I'm in the progress of re-installing this myth stuff, just to see if I can get the trimmer/editor and archiver working.
For quickly cutting I have used MythTV. I recorded some show, let it automatically search for the commercial breaks and fine-tuned the found markers. After this I started the Myth archiving function and burned all to DVD, without the commercials.
I have to admit, it worked gread from about 2006 or such. Somewhere in 2008 or 2009 some update ruined it all, my markers where somehow shifted.
Right now, I'm in the progress of re-installing this myth stuff, just to see if I can get the trimmer/editor and archiver working.
answered Jun 12 '13 at 21:16
CBee
111
111
add a comment |
add a comment |
up vote
1
down vote
I am running into the same trouble.
I have searched and tried to install this sort of ubuntu software
for many times, but unable to install any of them!
Perhaps my repository is broken?
It always says this depends that,
this depends A but B is going to be installed
Yesterday I just found that I can do it online,
With a youtube account:) If you are in a hurry, and do not have
enough time to try which ubuntu software works for you,
then do it online.
Go to youtube account, upload your video, then
select
Video Manager,
there is a Enhancement option,
at the bottom right corner there lies Trim option
Watch this 1 minute tutorial if you still can not find it

add a comment |
up vote
1
down vote
I am running into the same trouble.
I have searched and tried to install this sort of ubuntu software
for many times, but unable to install any of them!
Perhaps my repository is broken?
It always says this depends that,
this depends A but B is going to be installed
Yesterday I just found that I can do it online,
With a youtube account:) If you are in a hurry, and do not have
enough time to try which ubuntu software works for you,
then do it online.
Go to youtube account, upload your video, then
select
Video Manager,
there is a Enhancement option,
at the bottom right corner there lies Trim option
Watch this 1 minute tutorial if you still can not find it

add a comment |
up vote
1
down vote
up vote
1
down vote
I am running into the same trouble.
I have searched and tried to install this sort of ubuntu software
for many times, but unable to install any of them!
Perhaps my repository is broken?
It always says this depends that,
this depends A but B is going to be installed
Yesterday I just found that I can do it online,
With a youtube account:) If you are in a hurry, and do not have
enough time to try which ubuntu software works for you,
then do it online.
Go to youtube account, upload your video, then
select
Video Manager,
there is a Enhancement option,
at the bottom right corner there lies Trim option
Watch this 1 minute tutorial if you still can not find it

I am running into the same trouble.
I have searched and tried to install this sort of ubuntu software
for many times, but unable to install any of them!
Perhaps my repository is broken?
It always says this depends that,
this depends A but B is going to be installed
Yesterday I just found that I can do it online,
With a youtube account:) If you are in a hurry, and do not have
enough time to try which ubuntu software works for you,
then do it online.
Go to youtube account, upload your video, then
select
Video Manager,
there is a Enhancement option,
at the bottom right corner there lies Trim option
Watch this 1 minute tutorial if you still can not find it

edited Nov 8 '15 at 2:55
Germar
3,96921531
3,96921531
answered Nov 7 '15 at 13:41
user870474
112
112
add a comment |
add a comment |
up vote
1
down vote
vidcutter is a very useful tool for cutting, trimming and merging videos in ubuntu:
Install vidcutter:
sudo add-apt-repository ppa:ozmartian/apps
sudo apt update
sudo apt install vidcutter
works in ubuntu 17.10
add a comment |
up vote
1
down vote
vidcutter is a very useful tool for cutting, trimming and merging videos in ubuntu:
Install vidcutter:
sudo add-apt-repository ppa:ozmartian/apps
sudo apt update
sudo apt install vidcutter
works in ubuntu 17.10
add a comment |
up vote
1
down vote
up vote
1
down vote
vidcutter is a very useful tool for cutting, trimming and merging videos in ubuntu:
Install vidcutter:
sudo add-apt-repository ppa:ozmartian/apps
sudo apt update
sudo apt install vidcutter
works in ubuntu 17.10
vidcutter is a very useful tool for cutting, trimming and merging videos in ubuntu:
Install vidcutter:
sudo add-apt-repository ppa:ozmartian/apps
sudo apt update
sudo apt install vidcutter
works in ubuntu 17.10
answered Dec 25 '17 at 14:39
Riyafa Abdul Hameed
1769
1769
add a comment |
add a comment |
up vote
0
down vote
Pitivi too complex? Well... I suggest you learn how to use the mouse then lol
Anyway, I always use Kdenlive.
Just import the video, drag it onto the timeline, click on the spot where you want to split it, right-click it, and choose cut. Then remove the part you don't need.
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
1
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
add a comment |
up vote
0
down vote
Pitivi too complex? Well... I suggest you learn how to use the mouse then lol
Anyway, I always use Kdenlive.
Just import the video, drag it onto the timeline, click on the spot where you want to split it, right-click it, and choose cut. Then remove the part you don't need.
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
1
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
add a comment |
up vote
0
down vote
up vote
0
down vote
Pitivi too complex? Well... I suggest you learn how to use the mouse then lol
Anyway, I always use Kdenlive.
Just import the video, drag it onto the timeline, click on the spot where you want to split it, right-click it, and choose cut. Then remove the part you don't need.
Pitivi too complex? Well... I suggest you learn how to use the mouse then lol
Anyway, I always use Kdenlive.
Just import the video, drag it onto the timeline, click on the spot where you want to split it, right-click it, and choose cut. Then remove the part you don't need.
answered Aug 22 '11 at 18:36
RobinJ
6,42753964
6,42753964
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
1
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
add a comment |
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
1
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
Thanks for the helpful suggestion, but for what I need they are too complex. Note that I didn't say too difficult to use, just unnecessarily bloated for my purposes. I ended up using openshot
– jfoucher
Aug 22 '11 at 23:06
1
1
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
@jfoucher: you should accept Geppettvs's answer then ;)
– Takkat
Aug 23 '11 at 7:31
add a comment |
up vote
0
down vote
If you want a GUI application you can use dmMediaConverter, a ffmpeg frontend, which has a split function, without reencoding, fast. Just add the split points and press Run. Also, it can do a lot of other stuff.
http://dmsimpleapps.blogspot.ro/2014/04/dmmediaconverter.html

Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
add a comment |
up vote
0
down vote
If you want a GUI application you can use dmMediaConverter, a ffmpeg frontend, which has a split function, without reencoding, fast. Just add the split points and press Run. Also, it can do a lot of other stuff.
http://dmsimpleapps.blogspot.ro/2014/04/dmmediaconverter.html

Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
add a comment |
up vote
0
down vote
up vote
0
down vote
If you want a GUI application you can use dmMediaConverter, a ffmpeg frontend, which has a split function, without reencoding, fast. Just add the split points and press Run. Also, it can do a lot of other stuff.
http://dmsimpleapps.blogspot.ro/2014/04/dmmediaconverter.html

If you want a GUI application you can use dmMediaConverter, a ffmpeg frontend, which has a split function, without reencoding, fast. Just add the split points and press Run. Also, it can do a lot of other stuff.
http://dmsimpleapps.blogspot.ro/2014/04/dmmediaconverter.html

answered Nov 12 '15 at 6:27
mdalacu
46529
46529
Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
add a comment |
Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Sadly not open-source, though.
– Martin R.
Apr 28 '17 at 14:15
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
Yes, but it is free.
– mdalacu
May 1 '17 at 7:18
add a comment |
up vote
0
down vote
I've struggled with this same issue, having a large video file that I want to cut and save as separate scenes. After trying to do this in the usual suspects all listed by others here I ended up using Kino.
You will have to import the file as Kino needs it in dv format (whatever that is) and you can then specify start and end point for each clip on the Edit tab, then export each clip individually on the Export tab. Works great and is fast, the slowest part is the initial import of the video file. You can even add effects like titles to each clip.
I found that it is hard to find the exact spot to cut the scene in Kino and when I play the vid in the built in player there is no sound (there is when exported) and it plays too fast so I play the video in avidemux, find the time or frame number where I want to cut it, then use this info in Kino.
I do find it crashes a fair bit (I use Ubuntu 15.04 Kino v1.3.4) but it will recover where you were upon restart.
Update on the Kino webpage:
Kino is a dead project
( 05.08.2013 14:15 )
Kino has not been actively maintained since 2009. We encourage you to try other Linux video editors such as Shotcut, Kdenlive, Flowblade, OpenShot, PiTiVi, LiVES, and LightWorks.
add a comment |
up vote
0
down vote
I've struggled with this same issue, having a large video file that I want to cut and save as separate scenes. After trying to do this in the usual suspects all listed by others here I ended up using Kino.
You will have to import the file as Kino needs it in dv format (whatever that is) and you can then specify start and end point for each clip on the Edit tab, then export each clip individually on the Export tab. Works great and is fast, the slowest part is the initial import of the video file. You can even add effects like titles to each clip.
I found that it is hard to find the exact spot to cut the scene in Kino and when I play the vid in the built in player there is no sound (there is when exported) and it plays too fast so I play the video in avidemux, find the time or frame number where I want to cut it, then use this info in Kino.
I do find it crashes a fair bit (I use Ubuntu 15.04 Kino v1.3.4) but it will recover where you were upon restart.
Update on the Kino webpage:
Kino is a dead project
( 05.08.2013 14:15 )
Kino has not been actively maintained since 2009. We encourage you to try other Linux video editors such as Shotcut, Kdenlive, Flowblade, OpenShot, PiTiVi, LiVES, and LightWorks.
add a comment |
up vote
0
down vote
up vote
0
down vote
I've struggled with this same issue, having a large video file that I want to cut and save as separate scenes. After trying to do this in the usual suspects all listed by others here I ended up using Kino.
You will have to import the file as Kino needs it in dv format (whatever that is) and you can then specify start and end point for each clip on the Edit tab, then export each clip individually on the Export tab. Works great and is fast, the slowest part is the initial import of the video file. You can even add effects like titles to each clip.
I found that it is hard to find the exact spot to cut the scene in Kino and when I play the vid in the built in player there is no sound (there is when exported) and it plays too fast so I play the video in avidemux, find the time or frame number where I want to cut it, then use this info in Kino.
I do find it crashes a fair bit (I use Ubuntu 15.04 Kino v1.3.4) but it will recover where you were upon restart.
Update on the Kino webpage:
Kino is a dead project
( 05.08.2013 14:15 )
Kino has not been actively maintained since 2009. We encourage you to try other Linux video editors such as Shotcut, Kdenlive, Flowblade, OpenShot, PiTiVi, LiVES, and LightWorks.
I've struggled with this same issue, having a large video file that I want to cut and save as separate scenes. After trying to do this in the usual suspects all listed by others here I ended up using Kino.
You will have to import the file as Kino needs it in dv format (whatever that is) and you can then specify start and end point for each clip on the Edit tab, then export each clip individually on the Export tab. Works great and is fast, the slowest part is the initial import of the video file. You can even add effects like titles to each clip.
I found that it is hard to find the exact spot to cut the scene in Kino and when I play the vid in the built in player there is no sound (there is when exported) and it plays too fast so I play the video in avidemux, find the time or frame number where I want to cut it, then use this info in Kino.
I do find it crashes a fair bit (I use Ubuntu 15.04 Kino v1.3.4) but it will recover where you were upon restart.
Update on the Kino webpage:
Kino is a dead project
( 05.08.2013 14:15 )
Kino has not been actively maintained since 2009. We encourage you to try other Linux video editors such as Shotcut, Kdenlive, Flowblade, OpenShot, PiTiVi, LiVES, and LightWorks.
edited May 4 '16 at 7:51
Xen2050
6,66212142
6,66212142
answered Jun 30 '15 at 8:17
calabash
112
112
add a comment |
add a comment |
up vote
0
down vote
LosslessCut is focused entirely on clipping/cutting, is simple to use and does not re-encode, meaning saving to disk is pretty much instant.

To ensure audio remains synced with image, use the keyframe cut option.
add a comment |
up vote
0
down vote
LosslessCut is focused entirely on clipping/cutting, is simple to use and does not re-encode, meaning saving to disk is pretty much instant.

To ensure audio remains synced with image, use the keyframe cut option.
add a comment |
up vote
0
down vote
up vote
0
down vote
LosslessCut is focused entirely on clipping/cutting, is simple to use and does not re-encode, meaning saving to disk is pretty much instant.

To ensure audio remains synced with image, use the keyframe cut option.
LosslessCut is focused entirely on clipping/cutting, is simple to use and does not re-encode, meaning saving to disk is pretty much instant.

To ensure audio remains synced with image, use the keyframe cut option.
answered Dec 6 at 14:19
David Oliver
172113
172113
add a comment |
add a comment |
protected by Community♦ May 27 '17 at 22:06
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
What sort of video formats are you dealing with? Are you looking for a GUI or a CLI solution?
– fossfreedom♦
Aug 6 '11 at 11:21
1
Formats will be probably mp4, flv, mp3. GUI or CLI will be fine.
– Jiew Meng
Aug 6 '11 at 13:06
see superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
– Dennis Golomazov
Sep 5 '13 at 13:57