Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: converting problem

  1. #1
    Join Date
    Jun 2007
    Posts
    20

    Default converting problem

    hallo

    ihave everything right, and my server requirment is right, why can't i upload videos!
    i asked hostonnet to install, but he told me that i need to ask my host to fix ffmpeg and install the latest version of ffmpeg, but when i recieved the answer from my host, they wrote:
    -------------------------------------------------------------------------------------
    I have installed FFMPEG, as mentioned previously, as a shared module.
    I recommend that you read the documentation for your video software to
    see how to make it work when FFMPEG is installed as a shared module.
    If the documentation doesn't explain how to do this, then you should
    contact the technical support or author of this software for
    instructions.
    -------------------------------------------------------------------------------------
    do u have a solution!!

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

    Default

    Have you verified conversion command work on your server ?

  3. #3
    Join Date
    Jun 2007
    Posts
    20

    Default

    Quote Originally Posted by admin
    Have you verified conversion command work on your server ?
    well i don't know because it was hostonnet who installed vshare

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

    Default

    If video conversion is not working problem is with mencoder/ffmpeg installation. To confirm this, you need to check your debug log and ask your host to run the command on SSH prompt or you can run the command yourself with PHP script.

    For more information, see

    http://forums.buyscripts.in/viewtopic.php?t=351

    You can find conversion command in templates_c/debug.txt file.

    If you can post the url of your site, i can provide the exact command used for converting video, so you can ask your web host to run it on the server to see if conversion working.

    If conversion is not working, the software is not properly installed on the server.

  5. #5
    Join Date
    Jun 2007
    Posts
    20

    Default

    Quote Originally Posted by admin
    If video conversion is not working problem is with mencoder/ffmpeg installation. To confirm this, you need to check your debug log and ask your host to run the command on SSH prompt or you can run the command yourself with PHP script.

    For more information, see

    http://forums.buyscripts.in/viewtopic.php?t=351

    You can find conversion command in templates_c/debug.txt file.

    If you can post the url of your site, i can provide the exact command used for converting video, so you can ask your web host to run it on the server to see if conversion working.

    If conversion is not working, the software is not properly installed on the server.

    here is my website
    http://www.medialeek.com

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

    Default

    Your debug log is at

    http://www.medialeek.com/templates_c/debug.txt

    Your problem is ffmpeg / ffmpeg-php is not installed properly on your server.

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

  8. #8
    Join Date
    Jun 2007
    Posts
    20

    Default

    Quote Originally Posted by admin
    thank you for your response!
    but my host wrote me :
    -------------------------------------------------------------------------------------
    I have installed FFMPEG, as mentioned previously, as a shared module.
    I recommend that you read the documentation for your video software to
    see how to make it work when FFMPEG is installed as a shared module.
    If the documentation doesn't explain how to do this, then you should
    contact the technical support or author of this software for
    instructions.
    -------------------------------------------------------------------------------------
    what the solution do u think!

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

    Default

    yes, they installed it, but is not working properly. Ask them to fix or find a host that have all requirements inatalled and working fine.

  10. #10
    Join Date
    Jun 2007
    Posts
    1

    Default

    Hi. I'm the technical support technician at HagenHosting.com. I'm trying to help feher with his software.

    As he mentioned, FFMPEG-PHP has been installed as a shared module. That means that the following code must appear in the application to load the module.

    Code:
    $extension = "ffmpeg";
    $extension_soname = $extension . "." . PHP_SHLIB_SUFFIX;
    $extension_fullname = PHP_EXTENSION_DIR . "/" . $extension_soname;
    
    // load extension
    if(!extension_loaded($extension)) {
    	dl($extension_soname) or die("Can't load extension $extension_fullname\n");
    }
    If your software doesn't already support shared modules, which I would think would be a popular feature, is this something you can add?

    I've just added the above code to the following page so that you can see that it does work:

    http://www.medialeek.com/phpinfo.php

    -dougl

Page 1 of 2 12 LastLast

Similar Threads

  1. Converting little
    By Boxerman in forum Installation Support
    Replies: 2
    Last Post: 10-09-2008, 09:29 AM
  2. CONVERTING ERRORS!
    By bren13240 in forum Installation Support
    Replies: 4
    Last Post: 06-30-2008, 04:52 PM
  3. Converting Problem
    By lehjohns in forum Installation Support
    Replies: 2
    Last Post: 03-08-2008, 06:47 AM
  4. converting problem
    By aro3ansan in forum Installation Support
    Replies: 3
    Last Post: 10-29-2007, 01:13 PM
  5. not converting to flv
    By fugasi in forum Installation Support
    Replies: 2
    Last Post: 06-07-2007, 12:51 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
  •