Results 1 to 3 of 3

Thread: Hello, i have a problem!

  1. #1
    Join Date
    Sep 2011
    Posts
    7

    Default Hello, i have a problem!

    Hello, i tried mp4 conversion, and at some point i could convert, while other videos, i get this erro message, when i try to open video:
    Unsupported Media Type

    so what is the problem?

  2. #2
    Join Date
    Sep 2011
    Posts
    7

    Default

    by the way, i checked and all problematic converts were flv -> mp4
    while other formats to mp4 work OK, only flv to mp4 does not

  3. #3
    Join Date
    Sep 2011
    Posts
    7

    Default

    Well i looked in the video_conversion.log, and i realized, the converter moves the flv file instead of converting, so i looked into include/functions_upload.php, and realized that this row has to be changed
    from:

    Code:
    if ($file_extn == 'flv')
    to:
    Code:
    if (($file_extn == 'flv') && ($video_output_format =='flv'))
    After this change everything is okay. Reason: code was set to move instead of converting when their extension is .flv, which is allright if you just want converts to flv. BUT when you want your flv-s to convert into mp4, then my change has to be implemented, else, the script just moves the file without converting it.

    ps.: i tested it , everything is OKAY NOW.

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
  •