Welcome to the Webmaster Forum.
+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 11 to 17 of 17
  1. #11
    Join Date
    Mar 2010
    Posts
    120
    Rep Power
    0

    Default

    I did try ffmpegx. After a lengthy conversion, the movie & audio only played in slow motion. Or you may try this Video Encoder Engine for Adobe Flash, my friends recommend it to me. It can help you convert video format to .flv(flash format) using php script, C++, Visual Basic, Delphi, ASP, .NET, ColdFusion, it's safe and works pretty well for me, I think it deserves for a try.
    http://www.flash-video-soft.com/flash-video-sdk/
    Hope it helps

  2. #12
    Join Date
    Mar 2010
    Posts
    120
    Rep Power
    0

    Default

    Hi!
    Are you still here?))
    You can try to use another program to convert video files to flash!
    I prefer to use VisiFly program, it is very easy in use, step by step program. You can convert all video (avi, wmv, mpeg, mp4, mov) to flv or swf. Also these program allows to create HTML to use it on your website.

  3. #13
    Join Date
    Apr 2011
    Posts
    23
    Rep Power
    0

    Default

    Thanks for share this information............................

  4. #14
    Join Date
    Feb 2012
    Posts
    11
    Rep Power
    0

    Default

    Convert video to flv using PHP FFMPEG
    Here is my code it will convert to flv but size can be 0KB. ANy one HELp????

    <?php
    function makeMultipleTwo ($value){
    $sType = gettype($value/2);
    if($sType == "integer"){
    return $value;
    } else {
    return ($value-1);
    }
    }

    $srcFile = "kabhi-alvida.avi";
    $destFile = ".flvs/kabhi-alvida.flv";
    $ffmpegPath = "/usr/local/bin/ffmpeg";
    $flvtool2Path = "/usr/local/bin/flvtool2";


    $ffmpegObj = new ffmpeg_movie($srcFile);


    $srcWidth = makeMultipleTwo($ffmpegObj->getFrameWidth());
    $srcHeight = makeMultipleTwo($ffmpegObj->getFrameHeight());
    $srcFPS = $ffmpegObj->getFrameRate();
    $srcAB = intval($ffmpegObj->getAudioBitRate()/1000);
    $srcAR = $ffmpegObj->getAudioSampleRate();


    $command = $ffmpegPath . " -i " . $srcFile . " -ar " . $srcAR . " -ab " . $srcAB . " -f flv -s " . $srcWidth . "x" . $srcHeight . " " . $destFile . " | " . $flvtool2Path . " -U stdin " . $destFile;
    $convert = exec($command);



    if(!$convert){
    echo "FAILED!!!";
    }

    ?>

  5. #15
    Join Date
    Feb 2012
    Posts
    11
    Rep Power
    0

    Default

    Thanks Michal, For share this information..!!

  6. #16
    Join Date
    Feb 2012
    Posts
    25
    Rep Power
    1

    Default

    I prefer to use VisiFly program, it is very easy in use, step by step program.

  7. #17
    Join Date
    Feb 2012
    Posts
    11
    Rep Power
    0

    Default

    Thanks a lot for share this information. i really need it..


 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Back to top