Index: trunk/extensions/OggHandler/OggHandler_body.php |
— | — | @@ -230,11 +230,11 @@ |
231 | 231 | wfDebug( "Creating video thumbnail at $dstPath\n" ); |
232 | 232 | |
233 | 233 | $cmd = wfEscapeShellArg( $wgFFmpegLocation ) . |
| 234 | + ' -ss ' . intval( $thumbTime ) . ' ' . |
234 | 235 | ' -i ' . wfEscapeShellArg( $file->getPath() ) . |
235 | 236 | # MJPEG, that's the same as JPEG except it's supported by the windows build of ffmpeg |
236 | 237 | # No audio, one frame |
237 | | - ' -f mjpeg -an -vframes 1' . |
238 | | - ' -ss ' . intval( $thumbTime ) . ' ' . |
| 238 | + ' -f mjpeg -an -vframes 1 ' . |
239 | 239 | wfEscapeShellArg( $dstPath ) . ' 2>&1'; |
240 | 240 | |
241 | 241 | $retval = 0; |