splitting videos with ffmpeg?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fris
    I have to go potty
    • Aug 2002
    • 55727

    #1

    splitting videos with ffmpeg?

    anyone do this? not sure if this is right

    set end time
    mencoder -endpos 02:00:00 -ovc copy -oac copy black_shock_cock_full_video.mpg -o first_half.mpg

    set beginning
    mencoder -ss 01:00:00 -oac copy -ovc copy black_shock_cock_full_video.mpg -o second_half.mpg

    then join them
    mencoder -oac copy -ovc copy -o "new_black_shock_cock.mpg" "first_half.mpg" "second_half.mpg"
    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

    My Latest Theme
  • gleem
    Confirmed User
    • Jun 2001
    • 5593

    #2
    I dunno, I just had a script developed to split FLV files, splits em based on meta data I think, so it works the same way as a typical WMV/AVI splitter except it's on my server.

    Would like to split WMV's on my server, can FFMpeg split WMV's on the server via a little server script?
    Last edited by gleem; 08-31-2007, 06:35 AM.




    Contact me: \\// E: webmaster /at/ unprofessional.com

    Comment

    • fris
      I have to go potty
      • Aug 2002
      • 55727

      #3
      Originally posted by gleem
      I dunno, I just had a script developed to split FLV files, splits em based on meta data I think, so it works the same way as a typical WMV/AVI splitter except it's on my server.

      Would like to split WMV's on my server, can FFMpeg split WMV's on the server via a little server script?
      also looking to split .flv perl/bash/sh script if you have it

      i should be still on your aim
      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

      My Latest Theme

      Comment

      • calmlikeabomb
        Confirmed User
        • May 2004
        • 1323

        #4
        using FFMPEG you can split mpgs files like this:

        Code:
        ffmpeg -y -i video.mpg -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:15 video_part1.mpg
        where
        -y forces an overwrite
        -i video.mpg is the input file
        -vcodec copy, reuses existing video codecs
        -acodec copy, reuses existing audio codecs
        -ss 00:00:00, is the start time
        -t 00:00:15, is the end time (15 seconds)
        video_part1.mpg, is the output file

        If you want to convert mpg to flv then split you can do:
        Code:
        ffmpeg -y -i video.mpg video.flv;
        ffmpeg -y -i video.mpg -ss 00:00:00 -t 00:00:15 video_part1.mpg
        When converting wmv to any format I always loose the a/v sync.

        I'd like to know if anyone here has a solution or can share their wmv conversion methods...
        Last edited by calmlikeabomb; 08-31-2007, 01:57 PM.
        subarus.

        Comment

        • bDok
          Confirmed User
          • Feb 2005
          • 1917

          #5
          this is something that i have been wanting to know for awhile too. bummmmp.
          =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
          Warriors come out to plaAAaayyy!
          =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

          Comment

          • fris
            I have to go potty
            • Aug 2002
            • 55727

            #6
            Originally posted by calmlikeabomb
            using FFMPEG you can split mpgs files like this:

            Code:
            ffmpeg -y -i video.mpg -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:15 video_part1.mpg
            where
            -y forces an overwrite
            -i video.mpg is the input file
            -vcodec copy, reuses existing video codecs
            -acodec copy, reuses existing audio codecs
            -ss 00:00:00, is the start time
            -t 00:00:15, is the end time (15 seconds)
            video_part1.mpg, is the output file

            If you want to convert mpg to flv then split you can do:
            Code:
            ffmpeg -y -i video.mpg video.flv;
            ffmpeg -y -i video.mpg -ss 00:00:00 -t 00:00:15 video_part1.mpg
            When converting wmv to any format I always loose the a/v sync.

            I'd like to know if anyone here has a solution or can share their wmv conversion methods...

            can you please hit me up? i been trying to reach you for over 2 weeks now, i cant update my site, jfc is broken, i tried aim, email, nothing. thanks.
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            My Latest Theme

            Comment

            Working...