Browse Source

a stricter check for webm processing

pull/40/head
czaks 9 years ago
parent
commit
ccd00c497c
  1. 2
      inc/lib/webm/ffmpeg.php

2
inc/lib/webm/ffmpeg.php

@ -45,6 +45,8 @@ function make_webm_thumbnail($filename, $thumbnail, $width, $height, $duration)
$filename = escapeshellarg($filename);
$thumbnailfc = escapeshellarg($thumbnail); // Should be safe by default but you
// can never be too safe.
$width = escapeshellarg($width);
$height = escapeshellarg($height); // Same as above.
$ffmpeg = $config['webm']['ffmpeg_path'];
$ret = 0;
$ffmpeg_out = array();

Loading…
Cancel
Save