concat allow special chars in filename

This commit is contained in:
Roland Starke 2018-10-03 20:32:20 +02:00
commit 0ee2a63e18

View file

@ -105,7 +105,7 @@ class Concat extends AbstractMediaType
if($count_videos != 0)
$line .= "\n";
$line .= "file ".$videoPath;
$line .= "file " . addcslashes($videoPath, '\'"\\\0 ');
fwrite($fileStream, $line);