Add a setting that controls ffmpeg verbosity

Don't display ffmpeg errors in tests
This commit is contained in:
Pierre Rudloff 2017-12-09 23:16:48 +01:00
parent 4ae585eef1
commit 959b141282
5 changed files with 14 additions and 1 deletions

View file

@ -276,7 +276,7 @@ class VideoDownload
$builder = ProcessBuilder::create(
[
$this->config->avconv,
'-v', 'error',
'-v', $this->config->avconvVerbosity,
//Vimeo needs a correct user-agent
'-user_agent', $this->getProp(null, null, 'dump-user-agent'),
'-i', $url,