Split Video Files In ffmpeg

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Split Video Files In ffmpeg

    hii plz tell how to split video files in ssh by ffmpeg ???

    #2
    use this codec to extract all images from the video
    Code:
    ffmpeg -i input.avi -f image2 output_%05d.png

    Comment


      #3
      yea tat works, and how to convert .3gp file to .mp4?

      Comment


        #4
        To Convert 3GP File To MP4 With FFMPEG

        Follow these steps

        For CentOS 5.x.x
        Code:
        # cd /usr/local/bin/
        # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
        For CentOS 6.x.x
        Code:
        # cd /usr/bin/
        # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
        this will work 100% if u face any issue then let me know with the error message.. cheers!!
        Last edited by pyramid_raider; 21.11.11, 08:26.

        Comment


          #5
          Originally posted by pyramid_raider View Post
          For CentOS 5.x.x follow these steps
          Code:
          # cd /usr/local/bin/
          # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
          and for CentOS 6.x.x follow these steps
          Code:
          # cd /usr/bin/
          # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
          this will work 100% if u face any issue then let me know with the error message.. cheers!!
          yea that works. thankss dude

          Comment

          Working...
          X