soaivu / clipbucket

Automatically exported from code.google.com/p/clipbucket
0 stars 0 forks source link

last ffmpeg codec not recognized #417

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. activate ffmpeg with --enable-libxvid as *last* configure option
2. go to check modules page, to check status of ffmpeg codecs

What is the expected output? What do you see instead?
Expected output = libxvid should be green.
Output instead = libxvid is red.

What version of the product are you using? On what operating system?
2.6
CentOS5

Please provide any additional information below.

The preg_match_all in function get_ffmpeg_codecs() fails matching the last 
codec, as it is followed by a newline instead of a space character.

A quick & dirty way to fix this is to insert the following line just before, to 
make sure any newline is preceded by a space.

    $version = str_replace("\n"," \n",$version);

Original issue reported on code.google.com by dfai...@gmail.com on 5 Aug 2013 at 3:45

GoogleCodeExporter commented 8 years ago

Original comment by fawaz...@gmail.com on 20 Aug 2013 at 7:23

GoogleCodeExporter commented 8 years ago
Last release, we have removed the list of codecs

Original comment by fawaz...@gmail.com on 20 Aug 2013 at 11:17