Activity Stream
48,167 MEMBERS
6962 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 3 of 3
  1.     
    #1
    Just Another Coder

    Post Online Video Converter With ffmpeg (php)

    I found this on a forum, well some of you might have seen this. No one shared this so I am doing it now.

    PHP Code: 
    <?php

    function ffmpeg_convert($input_file$to_format$output_dir=null)

    {
        
    $input_file realpath($input_file);
        
    $output_dir is_dir($output_dir) ? $output_dir dirname($input_file);

        
    $output_file $output_dir.'/'.pathinfo($input_file
    PATHINFO_FILENAME).'.'.$to_format;
        
        
    $cmd sprintf('ffmpeg -y -i %s -f %s %s %s > /dev/null 2>&1',
            
    escapeshellcmd($input_file),
            
    $to_format,

            ((
    $to_format=='avi'||1)?'-f avi -vcodec mpeg4 -b 175k -g 300 -bf 2 -acodec libmp3lame -ab 32k':''),
            
    escapeshellcmd($output_file)
        );
    echo 
    $cmd;
        
    exec($cmd$output$status);
        
        
    $success = empty($status);
        
    return 
    $success $output_file false;
    }
    ?>
    Put ffmpeg also in the same folder as the script
    fdls Reviewed by fdls on . Online Video Converter With ffmpeg (php) I found this on a forum, well some of you might have seen this. No one shared this so I am doing it now. <?php function ffmpeg_convert($input_file, $to_format, $output_dir=null) { $input_file = realpath($input_file); $output_dir = is_dir($output_dir) ? $output_dir : dirname($input_file); Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Banned
    Website's:
    Khambaty.com iMotivate.net
    Is it possible that the output in MKV ?

  4.     
    #3
    Member
    thanks for this

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Online Video Conversion Sites/Online Video Grabber
    By soum111 in forum Useful Sites
    Replies: 1
    Last Post: 15th Feb 2012, 02:12 AM
  2. which video converter is good?
    By -={MINDFREAK}=- in forum General Discussion
    Replies: 20
    Last Post: 19th Dec 2011, 12:57 PM
  3. Reliable Video Converter
    By nEw_boY in forum Technical Help Desk Support
    Replies: 8
    Last Post: 23rd Jul 2011, 11:56 AM
  4. looking for best video converter
    By elpirata in forum General Discussion
    Replies: 11
    Last Post: 25th Jun 2011, 08:40 PM
  5. Replies: 0
    Last Post: 5th Feb 2008, 05:42 AM

Tags for this Thread

BE SOCIAL