joining two/more video file into one video file using php

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aratimane
    New Member
    • May 2007
    • 3

    #1

    joining two/more video file into one video file using php

    Hi,

    I have received the video file in chunk and want to join/merge these chunks into one video file.

    I have used cat command in unix for joining video, but while played that video file it will display one file only not joined second file.

    Is there any otherway to merge video chunks ?

    Plz help me out for the same
  • Motoma
    Recognized Expert Specialist
    • Jan 2007
    • 3236

    #2
    Originally posted by aratimane
    Hi,

    I have received the video file in chunk and want to join/merge these chunks into one video file.

    I have used cat command in unix for joining video, but while played that video file it will display one file only not joined second file.

    Is there any otherway to merge video chunks ?

    Plz help me out for the same
    You will likely need a tool such as FFmpeg to perform the join for you. PHP has some functions to interact directly with it, I think it is called php-ffmpeg (or the other way around).

    Comment

    • pbmods
      Recognized Expert Expert
      • Apr 2007
      • 5821

      #3
      php-ffmpeg is available here.

      I know absolutely nothing about it.

      Comment

      • Motoma
        Recognized Expert Specialist
        • Jan 2007
        • 3236

        #4
        Originally posted by pbmods
        php-ffmpeg is available here.

        I know absolutely nothing about it.
        Actually, the link I intended was ffmpeg-php. Sorry for the confusion.

        Comment

        Working...