Results 1 to 8 of 8

Thread: Still no flash

  1. #1
    Join Date
    Jun 2007
    Posts
    21

    Default Still no flash

    REF: http://www.tubebucket.com

    I just did my 3rd fresh install of the script.

    I dropped the db tables before the fresh installs. I used fresh files
    from a fresh ZIP in case any had been corrupted during the zip
    download. I've taken every small step I can think of to eliminate human
    or technical errors. I've double checked everything step-by-step.

    For some reason the vid files are not being converted into flash. I
    don't know much about the process other than it's being done by the
    server packages installed for this script.

    It uploads the original vid file to the "video" folder, it's doing that
    OK.

    When a video file is uploaded it creates 4 thumbnails and places them in
    the "thumb" folder, it's doing that OK. ffmpeg-php was added also per
    script requirements.

    However, there's no flash file created and placed in the "flvideo"
    folder.

    Is there a quick easy way to tell if ffmpeg, mplayer, mencoder, ffmpeg-php are functional?
    [ http://www.tubebucket.com/phpinfo.php ]

    All folder/files have permissions set as required.

    I also added this to my htaccess,
    php_value upload_max_filesize 200M
    php_value post_max_size 200M
    php_value output_buffering on
    php_value max_execution_time 2000
    php_value max_input_time 2000
    php_value session.gc_maxlifetime 24400

    Thanks for any suggestions :)

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

    Default

    Try tunning following command in your server.


    Code:
    /usr/local/bin/mencoder /web/sites/glowlite/tubebucket.com/video/1.mpg -o /web/sites/glowlite/tubebucket.com/flvideo/1.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
    See

    http://forums.buyscripts.in/viewtopic.php?p=1418

  3. #3
    Join Date
    Jun 2007
    Posts
    21

    Default

    I created "convert.php" and it tells me:
    'error parsing cmdline'

    http://www.tubebucket.com/convert.php

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

    Default

    It seems your mencoder installation is not proper. If properly installed, the convertion command will work on the server.

  5. #5
    Join Date
    Jun 2007
    Posts
    21

    Default

    Thanks for your help. I have sent this info to the host. He is working on it now.

  6. #6
    Join Date
    Jun 2007
    Posts
    21

    Default

    REF: http://www.tubebucket.com

    Almost working!

    3gp - fails
    mp4 - fails
    mov - OK
    asf - some do, some don't
    flv - OK
    mpg - OK
    avi - OK
    mpeg
    wmv - some do, some don't
    rm - fails
    dat -

    "Now Playing" and "Related Videos" never change thumbs, never have. This script was re-installed 3 times, "PREV" and "NEXT" links are dead also.

    Email system works great. Can the watermark overlay link be moved? Top left corner?

    Entering single 'quotes' in the Comments box (input field) generates the "Your already posted comments on this video" warning. Single apostrophe fails also. Double "quotes" are OK.

    I also changed video_conversion.php to:
    Code:
    <?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:last_pred=3 -srate 22050 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames";
    
    $cmd_all = $cmd_ffmpeg;
    
    $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 tried using mencoder on the wmv, asf, 3gp, mp4, rm files but that didn't work either.

    Thanks for your help.

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

    Default

    Next, previous problem we are working on it.

    The 3gp is not working as ffmpeg may not support it. You can try mencoder for that, to do this, change

    Code:
    $convert_3gp = $cmd_all
    to

    Code:
    $convert_3gp = $cmd_mencoder;

  8. #8
    Join Date
    Jun 2007
    Posts
    21

    Default

    I'm not concerned about 3gp files. I am concerned about wmv files. My post says tried using mencoder on the wmv, asf, 3gp, mp4, rm files but that didn't work either.

Similar Threads

  1. Flash displays - who's used them
    By Dafydd in forum General Discussions
    Replies: 11
    Last Post: 09-30-2008, 08:03 PM
  2. videowall flash mod
    By l1some in forum Template Modifications
    Replies: 2
    Last Post: 08-25-2008, 10:11 AM
  3. flash videos
    By jeremy in forum General Discussions
    Replies: 1
    Last Post: 06-19-2008, 04:35 AM
  4. Flash Uploader
    By nightmage in forum Feature Requests
    Replies: 2
    Last Post: 09-19-2007, 08:02 PM
  5. My new flash menu
    By karlmay in forum Template Modifications
    Replies: 3
    Last Post: 09-18-2007, 07:31 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
  •