Convert Big 3gp file To Small

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

    Convert Big 3gp file To Small

    Hey guys I Need Help Is it Possible to make parts all Big 3gp File whose size is more then 5mb at Once

    #2
    Originally posted by shushant View Post
    Hey guys I Need Help Is it Possible to make parts all Big 3gp File whose size is more then 5mb at Once
    u want to compress files or split into small parts??

    Comment


      #3
      Ya In parts

      Comment


        #4
        To split video file into parts using ffmpeg

        Originally posted by shushant View Post
        Ya In parts
        1. Install ffmpeg into ur server...
        2. If u use CentOS 5.x.x then ur ffmpeg path will be /usr/local/bin/ and if u r using CentOS 6.x.x then its /usr/bin/
        3. Use this code to split video into ur desired time frame
        Code:
        # 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
        and if u need codec help then ask me.. and i must say google ur problem before posting here

        Comment

        Working...
        X