Results 1 to 3 of 3

Thread: Re: Video Play Too Fast!

  1. #1

    Default Re: Video Play Too Fast!

    Hello,

    Can someone please tell me how to modify the code below that will slow video playing time down.
    Videos are converting as they should, but videos are playing too fast.

    The code below is from the "video_conversion.php" file located in the "include/settings" folder.

    <?php

    $cmd_ffmpeg = "$config[ffmpeg] -i '$video_src' -acodec mp3 -ar 22050 -ab 32 -f flv $video_flv";
    $cmd_mencoder = "$config[mencoder] '$video_src' -o $video_flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:l ast_pred=3 -srate 22050 ";

    $cmd_all = $cmd_mencoder;

    $convert_3gp = $cmd_all;
    $convert_mp4 = $cmd_all;
    $convert_mov = $cmd_all;
    $convert_asf = $cmd_all;
    $convert_mpg = $cmd_all;
    $convert_avi = $cmd_all;
    $convert_mpeg = $cmd_all;
    $convert_wmv = $cmd_all;
    $convert_rm = $cmd_all;
    $convert_dat = $cmd_all;

    Thanks for any help you can provide....

    Best Regards,
    apj5621

  2. #2

    Default

    You need to put "-ofps 24" after the line of "last_pred=3 -srate 22050"

  3. #3
    Join Date
    Apr 2007
    Posts
    2,202

    Default Re: Video Play Too Fast!

    Use following convert command

    Code:
    $cmd_mencoder = "$config[mencoder] '$video_src' -o $video_flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -srate 22050 -ofps 24 -vf harddup";

Similar Threads

  1. Video No Play :: Please Help
    By RifGate.Co.cc in forum Installation Support
    Replies: 3
    Last Post: 06-17-2008, 05:17 AM
  2. play the video?
    By Boxerman in forum Installation Support
    Replies: 0
    Last Post: 05-24-2008, 10:15 PM
  3. 3GP video Plays too fast
    By mblakeceo in forum Bug Reports
    Replies: 0
    Last Post: 04-14-2008, 06:46 PM
  4. video still can't play!!!
    By mistic in forum Fixed Bugs
    Replies: 3
    Last Post: 08-11-2007, 07:57 AM
  5. Video Won't Play
    By RABIZ9 in forum Installation Support
    Replies: 6
    Last Post: 05-21-2007, 08:39 AM

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
  •