Batch editing video software?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MyDogHasFleas
    Confirmed User
    • Apr 2008
    • 529

    #1

    Batch editing video software?

    I'm looking for something that can batch edit a bunch of videos. Let's say I have a folder of 50 videos and I only need the last two minutes of each video... Is there any software that can spit out 2 minute files of each video?
  • MyDogHasFleas
    Confirmed User
    • Apr 2008
    • 529

    #2
    I take it by the lack of responses that no such software exists?

    Comment

    • kane
      Too lazy to set a custom title
      • Aug 2001
      • 20684

      #3
      I use a program called Ultra Video Splitter that might do what you need. It will let you set it so that it cuts videos into clips of a length that you set. For you to do it in a batch you would have to have all the videos be the same length through.

      Comment

      • notjoe
        Confirmed User
        • May 2002
        • 5599

        #4
        ffmpeg is what you're looking for.

        Comment

        • leroytrolley
          XXX Video Editor
          • Dec 2005
          • 2301

          #5
          Good luck with that.
          XXX Video Editor

          Comment

          • OverdueNudes
            Confirmed User
            • Nov 2008
            • 606

            #6
            You posted, waited 8 hours, then bumped the topic - all without going to a search engine and looking for the software yourself?
            Great Whitelabel Dating

            Comment

            • johnnyloadproductions
              Account Shutdown
              • Oct 2008
              • 3611

              #7
              http://www.videocharge.com/Index.php

              This will do it, at least from what I know you can put however many videos you want in a queue and then split them up that way.
              I'm pretty sure you can set it to just the last portions exclusively in the videos.
              Either way, you won't be disappointed with that software.

              ...going for the cumshots eh?

              Comment

              • MyDogHasFleas
                Confirmed User
                • Apr 2008
                • 529

                #8
                Originally posted by johnnyloadproductions
                http://www.videocharge.com/Index.php

                This will do it, at least from what I know you can put however many videos you want in a queue and then split them up that way.
                I'm pretty sure you can set it to just the last portions exclusively in the videos.
                Either way, you won't be disappointed with that software.

                ...going for the cumshots eh?
                Thanks for the suggestion. I'll check that out. I'm not going for the cumshots... Just editing videos from sponsors.

                Comment

                • NaughtyRob
                  Two fresh affiliate progs
                  • Nov 2004
                  • 29602

                  #9
                  Sounds like it will also work well to cut out the cumshots to upload to tubes to entice the surfer to join your site and see the cum shot.
                  [email protected]
                  Skype: 17026955414
                  Vacares Web Hosting - Protect Your Ass with Included Daily Backups

                  Comment

                  • ezrajulesjordanvideo
                    Registered User
                    • May 2010
                    • 55

                    #10
                    ffmpeg would be your best option. Or you could do it in adobe media encoder.


                    Ezra
                    icq: 620932275
                    AIM ezrajulesjordan

                    Comment

                    • smutnut
                      So Fucking Banned
                      • Jul 2007
                      • 5889

                      #11
                      What are you trying to do? I edit and convert with Adobe CS5, but you need to spend some money so encoder is probably better, especially since the html 5 anti flash scare

                      Comment

                      • ezrajulesjordanvideo
                        Registered User
                        • May 2010
                        • 55

                        #12
                        Just use in and out points in media encoder and save it as a template.


                        Ezra
                        icq: 620932275
                        AIM ezrajulesjordan

                        Comment

                        • raymor
                          Confirmed User
                          • Oct 2002
                          • 3745

                          #13
                          Originally posted by ezrajulesjordanvideo
                          ffmpeg would be your best option. Or you could do it in adobe media encoder.
                          Yeah batch processing and rule based stuff in where the cli will save you a lot of time. To do ANYYHING on every file:

                          for vid in *.flv
                          do
                          dosomething $vid
                          done

                          So:


                          for vid in *.flv
                          do
                          ffmpeg -i $vid -vcodec copy -acodec copy -t 00:03:00 $vid.trimmed.flv
                          done

                          No special software needed - "for" loops over anything, doing anything to it. ffmpeg does anything to videos.
                          Last edited by raymor; 04-13-2012, 04:14 PM.
                          For historical display only. This information is not current:
                          support@bettercgi.com ICQ 7208627
                          Strongbox - The next generation in site security
                          Throttlebox - The next generation in bandwidth control
                          Clonebox - Backup and disaster recovery on steroids

                          Comment

                          Working...