Closed (fixed)
Project:
FlashVideo
Version:
6.x-1.5-rc2
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Reporter:
Created:
23 Apr 2009 at 07:43 UTC
Updated:
8 May 2009 at 02:10 UTC
Line 1046 of source code doesn't work for me
if (strpos($format, 'EA libmp3lame') !== FALSE) {
I try to execute ffmpeg.exe -formats and the output for the above line is this:
EA libmp3lame
There are 4 space char between EA and libmp3lame, instead of 3.
For this reason libmp3lame for me is never used.
I used this :
if (strpos($format, 'libmp3lame') !== FALSE) {
But maybe this it's safer
if (preg_match("/EA\s+libmp3lame/mi", $format)
Comments
Comment #1
tagliavinid commentedSorry, this code is better, I forgot a parenthesis in the previous one
Comment #2
attheshow commentedCommitted to dev version. Thanks tagliavinid!