Index: trunk/extensions/FlvHandler/FlvHandler.php |
— | — | @@ -20,8 +20,8 @@ |
21 | 21 | $wgExtensionCredits['media'][] = array( |
22 | 22 | 'path' => __FILE__, |
23 | 23 | 'name' => 'FLV Image Handler', |
24 | | - 'version' => 'r3', |
25 | | - 'author' => 'Adam Nielsen', |
| 24 | + 'version' => 'r4', |
| 25 | + 'author' => 'Adam Nielsen', |
26 | 26 | 'url' => 'http://www.mediawiki.org/wiki/Extension:FlvHandler', |
27 | 27 | 'descriptionmsg' => 'flvhandler_desc' |
28 | 28 | ); |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | |
36 | 36 | // Commands to extract still frames out of the FLV files |
37 | 37 | $wgFLVConverters = array( |
38 | | - 'ffmpeg' => '$path/ffmpeg -vcodec png -i $input -ss 0 -vframes 1 -s $widthx$height -f image2 $output' |
| 38 | + 'ffmpeg' => '$path/ffmpeg -i $input -ss 0 -vframes 1 -vcodec png -s $widthx$height -f image2 $output' |
39 | 39 | ); |
40 | 40 | // Probe command (to get video width and height.) 'regex' is run over the |
41 | 41 | // command's output to get the dimensions. |