What to use to quickly cut Audio/Video

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
125
down vote

favorite
39












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?







share|improve this question





















  • 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














up vote
125
down vote

favorite
39












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?







share|improve this question





















  • 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












up vote
125
down vote

favorite
39









up vote
125
down vote

favorite
39






39





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?







share|improve this question













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?









share|improve this question












share|improve this question




share|improve this question








edited Oct 26 '14 at 17:55









landroni

4,12662148




4,12662148









asked Aug 6 '11 at 10:55









Jiew Meng

3,139196391




3,139196391











  • 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






  • 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










18 Answers
18






active

oldest

votes

















up vote
137
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/






share|improve this answer



















  • 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


















up vote
30
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:



enter image description here



enter image description here



Good luck!






share|improve this answer























  • 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 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




    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

















up vote
28
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






share|improve this answer























  • 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 copy mean?
    – 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

















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






share|improve this answer























  • you can use winff (GUI for ffmpeg) also
    – jahid65
    Aug 6 '11 at 17:36

















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.
alt text






share|improve this answer





















  • 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

















up vote
5
down vote













My preference for easy video clipping has always been avidemux.
Avudemux logo



Just set the video and audio encoding to Copy and choose the container format you want, within reason.






share|improve this answer






























    up vote
    3
    down vote













    Try Avidemux Install avidemux



    sudo apt-get install avidemux


    or LiVES Install lives



    sudo apt-get install lives


    more
    here http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/ (Dead link, redirects to random commercial sites)






    share|improve this answer























    • Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
      – Lucio
      Mar 1 '14 at 19:01


















    up vote
    2
    down vote













    I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:



    1. Create a new project with your full lecture.

    2. Set your start and end points for the first "manageable chunk" in the clip monitor.

    3. Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.

    4. Set new start and end points in the clip monitor and repeat as needed.





    share|improve this answer

















    • 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

















    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.






    share|improve this answer




























      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.






      share|improve this answer






























        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:
        WinFF






        share|improve this answer






























          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").






          share|improve this answer




























            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.






            share|improve this answer




























              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



              Screen Capture of the Trim menu






              share|improve this answer






























                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






                share|improve this answer




























                  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.






                  share|improve this answer





















                  • 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










                  • @jfoucher: you should accept Geppettvs's answer then ;)
                    – Takkat
                    Aug 23 '11 at 7:31

















                  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
                  Split function example






                  share|improve this answer





















                  • 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

















                  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.







                  share|improve this answer






















                    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?














                    18 Answers
                    18






                    active

                    oldest

                    votes








                    18 Answers
                    18






                    active

                    oldest

                    votes









                    active

                    oldest

                    votes






                    active

                    oldest

                    votes








                    up vote
                    137
                    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/






                    share|improve this answer



















                    • 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















                    up vote
                    137
                    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/






                    share|improve this answer



















                    • 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













                    up vote
                    137
                    down vote



                    accepted







                    up vote
                    137
                    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/






                    share|improve this answer















                    • 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/







                    share|improve this answer















                    share|improve this answer



                    share|improve this answer








                    edited Sep 15 '14 at 3:49









                    BornToCode

                    7152822




                    7152822











                    answered Aug 6 '11 at 15:22









                    Luis Alvarado♦

                    140k132477644




                    140k132477644







                    • 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




                      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













                    up vote
                    30
                    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:



                    enter image description here



                    enter image description here



                    Good luck!






                    share|improve this answer























                    • 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 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




                      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














                    up vote
                    30
                    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:



                    enter image description here



                    enter image description here



                    Good luck!






                    share|improve this answer























                    • 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 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




                      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












                    up vote
                    30
                    down vote










                    up vote
                    30
                    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:



                    enter image description here



                    enter image description here



                    Good luck!






                    share|improve this answer















                    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:



                    enter image description here



                    enter image description here



                    Good luck!







                    share|improve this answer















                    share|improve this answer



                    share|improve this answer








                    edited Aug 17 '15 at 20:23


























                    answered Aug 22 '11 at 19:59









                    Geppettvs D'Constanzo

                    15.8k33179




                    15.8k33179











                    • 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 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




                      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






                    • 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 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




                      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










                    up vote
                    28
                    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






                    share|improve this answer























                    • 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 copy mean?
                      – 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














                    up vote
                    28
                    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






                    share|improve this answer























                    • 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 copy mean?
                      – 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












                    up vote
                    28
                    down vote










                    up vote
                    28
                    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






                    share|improve this answer















                    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







                    share|improve this answer















                    share|improve this answer



                    share|improve this answer








                    edited Jan 4 '16 at 10:52


























                    answered Sep 26 '13 at 10:54









                    Philippe Gachoud

                    2,9672336




                    2,9672336











                    • 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 copy mean?
                      – 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










                    • 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






                    • 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










                    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






                    share|improve this answer























                    • you can use winff (GUI for ffmpeg) also
                      – jahid65
                      Aug 6 '11 at 17:36














                    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






                    share|improve this answer























                    • you can use winff (GUI for ffmpeg) also
                      – jahid65
                      Aug 6 '11 at 17:36












                    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






                    share|improve this answer















                    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







                    share|improve this answer















                    share|improve this answer



                    share|improve this answer








                    edited Mar 1 '14 at 19:56









                    Seth♦

                    32.2k24109157




                    32.2k24109157











                    answered Nov 11 '10 at 12:50









                    RobotHumans

                    22.2k358101




                    22.2k358101











                    • 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




                    you can use winff (GUI for ffmpeg) also
                    – jahid65
                    Aug 6 '11 at 17:36










                    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.
                    alt text






                    share|improve this answer





















                    • 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














                    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.
                    alt text






                    share|improve this answer





















                    • 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












                    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.
                    alt text






                    share|improve this answer













                    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.
                    alt text







                    share|improve this answer













                    share|improve this answer



                    share|improve this answer











                    answered Nov 11 '10 at 6:21









                    aneeshep

                    21k115474




                    21k115474











                    • 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










                    • 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










                    up vote
                    5
                    down vote













                    My preference for easy video clipping has always been avidemux.
                    Avudemux logo



                    Just set the video and audio encoding to Copy and choose the container format you want, within reason.






                    share|improve this answer



























                      up vote
                      5
                      down vote













                      My preference for easy video clipping has always been avidemux.
                      Avudemux logo



                      Just set the video and audio encoding to Copy and choose the container format you want, within reason.






                      share|improve this answer

























                        up vote
                        5
                        down vote










                        up vote
                        5
                        down vote









                        My preference for easy video clipping has always been avidemux.
                        Avudemux logo



                        Just set the video and audio encoding to Copy and choose the container format you want, within reason.






                        share|improve this answer















                        My preference for easy video clipping has always been avidemux.
                        Avudemux logo



                        Just set the video and audio encoding to Copy and choose the container format you want, within reason.







                        share|improve this answer















                        share|improve this answer



                        share|improve this answer








                        edited Jan 28 '16 at 15:02









                        Kolappan Nathan

                        438619




                        438619











                        answered Nov 11 '10 at 6:35









                        Kees Cook

                        13.7k65691




                        13.7k65691




















                            up vote
                            3
                            down vote













                            Try Avidemux Install avidemux



                            sudo apt-get install avidemux


                            or LiVES Install lives



                            sudo apt-get install lives


                            more
                            here http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/ (Dead link, redirects to random commercial sites)






                            share|improve this answer























                            • Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
                              – Lucio
                              Mar 1 '14 at 19:01















                            up vote
                            3
                            down vote













                            Try Avidemux Install avidemux



                            sudo apt-get install avidemux


                            or LiVES Install lives



                            sudo apt-get install lives


                            more
                            here http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/ (Dead link, redirects to random commercial sites)






                            share|improve this answer























                            • Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
                              – Lucio
                              Mar 1 '14 at 19:01













                            up vote
                            3
                            down vote










                            up vote
                            3
                            down vote









                            Try Avidemux Install avidemux



                            sudo apt-get install avidemux


                            or LiVES Install lives



                            sudo apt-get install lives


                            more
                            here http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/ (Dead link, redirects to random commercial sites)






                            share|improve this answer















                            Try Avidemux Install avidemux



                            sudo apt-get install avidemux


                            or LiVES Install lives



                            sudo apt-get install lives


                            more
                            here http://techcityinc.com/2009/02/04/top-10-free-video-editors-for-ubuntu-linux/ (Dead link, redirects to random commercial sites)







                            share|improve this answer















                            share|improve this answer



                            share|improve this answer








                            edited Mar 11 '17 at 19:00









                            Community♦

                            1




                            1











                            answered Aug 22 '11 at 18:40









                            TheShadowFog

                            253137




                            253137











                            • 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





                            Avidemux freezed several times for my under Ubuntu 13.10, even with a x4 CPU.
                            – Lucio
                            Mar 1 '14 at 19:01











                            up vote
                            2
                            down vote













                            I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:



                            1. Create a new project with your full lecture.

                            2. Set your start and end points for the first "manageable chunk" in the clip monitor.

                            3. Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.

                            4. Set new start and end points in the clip monitor and repeat as needed.





                            share|improve this answer

















                            • 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














                            up vote
                            2
                            down vote













                            I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:



                            1. Create a new project with your full lecture.

                            2. Set your start and end points for the first "manageable chunk" in the clip monitor.

                            3. Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.

                            4. Set new start and end points in the clip monitor and repeat as needed.





                            share|improve this answer

















                            • 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












                            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:



                            1. Create a new project with your full lecture.

                            2. Set your start and end points for the first "manageable chunk" in the clip monitor.

                            3. Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.

                            4. Set new start and end points in the clip monitor and repeat as needed.





                            share|improve this answer













                            I use Kdenlive, but I wouldn't be surprised if you could even slice video this way in PiTiVi:



                            1. Create a new project with your full lecture.

                            2. Set your start and end points for the first "manageable chunk" in the clip monitor.

                            3. Drag from the video in the clip monitor down to your timeline. It will be just the chunk you chose.

                            4. Set new start and end points in the clip monitor and repeat as needed.






                            share|improve this answer













                            share|improve this answer



                            share|improve this answer











                            answered Nov 11 '10 at 5:58









                            esoltys

                            30325




                            30325







                            • 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




                              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










                            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.






                            share|improve this answer

























                              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.






                              share|improve this answer























                                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.






                                share|improve this answer













                                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.







                                share|improve this answer













                                share|improve this answer



                                share|improve this answer











                                answered Oct 15 '11 at 22:03









                                Mekk

                                386213




                                386213




















                                    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.






                                    share|improve this answer



























                                      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.






                                      share|improve this answer

























                                        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.






                                        share|improve this answer















                                        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.







                                        share|improve this answer















                                        share|improve this answer



                                        share|improve this answer








                                        edited Oct 6 '13 at 13:09









                                        Aditya

                                        8,858125087




                                        8,858125087











                                        answered Aug 26 '11 at 6:13









                                        Adobe

                                        2,25432040




                                        2,25432040




















                                            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:
                                            WinFF






                                            share|improve this answer



























                                              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:
                                              WinFF






                                              share|improve this answer

























                                                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:
                                                WinFF






                                                share|improve this answer















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



                                                Here is the screenshot:
                                                WinFF







                                                share|improve this answer















                                                share|improve this answer



                                                share|improve this answer








                                                edited Nov 16 '15 at 2:02


























                                                answered Nov 10 '15 at 5:56









                                                Almas Dusal

                                                17914




                                                17914




















                                                    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").






                                                    share|improve this answer

























                                                      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").






                                                      share|improve this answer























                                                        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").






                                                        share|improve this answer













                                                        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").







                                                        share|improve this answer













                                                        share|improve this answer



                                                        share|improve this answer











                                                        answered Jan 26 '11 at 21:05









                                                        Jordan Uggla

                                                        3,04111215




                                                        3,04111215




















                                                            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.






                                                            share|improve this answer

























                                                              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.






                                                              share|improve this answer























                                                                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.






                                                                share|improve this answer













                                                                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.







                                                                share|improve this answer













                                                                share|improve this answer



                                                                share|improve this answer











                                                                answered Jun 12 '13 at 21:16









                                                                CBee

                                                                111




                                                                111




















                                                                    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



                                                                    Screen Capture of the Trim menu






                                                                    share|improve this answer



























                                                                      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



                                                                      Screen Capture of the Trim menu






                                                                      share|improve this answer

























                                                                        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



                                                                        Screen Capture of the Trim menu






                                                                        share|improve this answer















                                                                        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



                                                                        Screen Capture of the Trim menu







                                                                        share|improve this answer















                                                                        share|improve this answer



                                                                        share|improve this answer








                                                                        edited Nov 8 '15 at 2:55









                                                                        Germar

                                                                        3,76911330




                                                                        3,76911330











                                                                        answered Nov 7 '15 at 13:41









                                                                        user870474

                                                                        112




                                                                        112




















                                                                            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






                                                                            share|improve this answer

























                                                                              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






                                                                              share|improve this answer























                                                                                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






                                                                                share|improve this answer













                                                                                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







                                                                                share|improve this answer













                                                                                share|improve this answer



                                                                                share|improve this answer











                                                                                answered Dec 25 '17 at 14:39









                                                                                Riyafa Abdul Hameed

                                                                                1669




                                                                                1669




















                                                                                    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.






                                                                                    share|improve this answer





















                                                                                    • 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










                                                                                    • @jfoucher: you should accept Geppettvs's answer then ;)
                                                                                      – Takkat
                                                                                      Aug 23 '11 at 7:31














                                                                                    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.






                                                                                    share|improve this answer





















                                                                                    • 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










                                                                                    • @jfoucher: you should accept Geppettvs's answer then ;)
                                                                                      – Takkat
                                                                                      Aug 23 '11 at 7:31












                                                                                    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.






                                                                                    share|improve this answer













                                                                                    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.







                                                                                    share|improve this answer













                                                                                    share|improve this answer



                                                                                    share|improve this answer











                                                                                    answered Aug 22 '11 at 18:36









                                                                                    RobinJ

                                                                                    6,38043864




                                                                                    6,38043864











                                                                                    • 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










                                                                                    • @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










                                                                                    • @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












                                                                                    @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










                                                                                    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
                                                                                    Split function example






                                                                                    share|improve this answer





















                                                                                    • 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














                                                                                    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
                                                                                    Split function example






                                                                                    share|improve this answer





















                                                                                    • 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












                                                                                    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
                                                                                    Split function example






                                                                                    share|improve this answer













                                                                                    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
                                                                                    Split function example







                                                                                    share|improve this answer













                                                                                    share|improve this answer



                                                                                    share|improve this answer











                                                                                    answered Nov 12 '15 at 6:27









                                                                                    mdalacu

                                                                                    46729




                                                                                    46729











                                                                                    • 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










                                                                                    • 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










                                                                                    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.







                                                                                    share|improve this answer



























                                                                                      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.







                                                                                      share|improve this answer

























                                                                                        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.







                                                                                        share|improve this answer















                                                                                        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.








                                                                                        share|improve this answer















                                                                                        share|improve this answer



                                                                                        share|improve this answer








                                                                                        edited May 4 '16 at 7:51









                                                                                        Xen2050

                                                                                        6,26912040




                                                                                        6,26912040











                                                                                        answered Jun 30 '15 at 8:17









                                                                                        calabash

                                                                                        112




                                                                                        112















                                                                                            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?


                                                                                            Popular posts from this blog

                                                                                            How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

                                                                                            Trouble downloading packages list due to a “Hash sum mismatch” error

                                                                                            How do I move numbers in filenames, in a batch renaming operation?