Results 1 to 3 of 3

Thread: Errors with Mencoder

  1. #1
    Join Date
    Jan 2008
    Posts
    216

    Default Errors with Mencoder

    Hi, recently I found errors on files being converted with Mencoder. The files are converted but skipping some frames...
    This is what I get:

    Code:
    ** MUXER_LAVF *****************************************************************
    REMEMBER: MEncoder's libavformat muxing is presently broken and can generate
    INCORRECT files in the presence of B frames. Moreover, due to bugs MPlayer
    will play these INCORRECT files as if nothing were wrong!
    *******************************************************************************
    New_Face failed. Maybe the font path is wrong.
    Please supply the text font file (~/.mplayer/subfont.ttf).
    subtitle font: load_sub_face failed.
    New_Face failed. Maybe the font path is wrong.
    Please supply the text font file (~/.mplayer/subfont.ttf).
    subtitle font: load_sub_face failed.
    
    Skipping frame!
    
    Skipping frame!
    
    Skipping frame!
    
    Skipping frame!
    
    Skipping frame!
    
    Skipping frame!
    And this is my video_conversion.php:

    Code:
    <?php
    
    $cmd_ffmpeg = "$config[ffmpeg] -i '$video_src' -acodec libmp3lame -ar 22050 -ab 32 -f flv $video_flv";
    
    // For rpm (old) version of mplayer
    #$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 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames";
    
    // For latest svn version of mplayer
    $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";
    
    $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;
    I've tried to switch to the old Mencoder command but it wont work, any suggestion?

  2. #2
    Join Date
    Jan 2008
    Location
    India
    Posts
    147

  3. #3
    Join Date
    Jan 2008
    Posts
    216

    Default Re: Errors with Mencoder

    Thank you for you answer sanil. I already read that docs and it seems I'm using the right command for that Mencoder version, anyway I noticed that I get this kind of error only when files are converted "by" cronjob!
    Trying to re-convert from the admin panel all goes without problems!! Boh??

Similar Threads

  1. MEncoder Two-Pass Encoding
    By RAMMSTEIN in forum General Discussions
    Replies: 1
    Last Post: 05-08-2008, 09:20 AM
  2. mencoder error
    By musictvblogger in forum Fixed Bugs
    Replies: 4
    Last Post: 10-18-2007, 04:08 PM
  3. MENCODER CHANGES!
    By mersh in forum Installation Support
    Replies: 7
    Last Post: 08-31-2007, 08:17 AM
  4. FFmpeg, Mencoder, ect...
    By Killerbee in forum Installation Support
    Replies: 2
    Last Post: 08-18-2007, 02:08 PM
  5. mencoder not working? use FFMPEG INSTEAD! :)
    By mersh in forum Installation Support
    Replies: 10
    Last Post: 06-28-2007, 08:56 PM

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
  •