From 4ae585eef1adae94f3abeda84b7d347bacc0752a Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 9 Dec 2017 22:22:07 +0100 Subject: [PATCH] Output ffmpeg errors to STDERR (fixes #140) --- classes/VideoDownload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/VideoDownload.php b/classes/VideoDownload.php index f711341..26ac1f9 100644 --- a/classes/VideoDownload.php +++ b/classes/VideoDownload.php @@ -276,7 +276,7 @@ class VideoDownload $builder = ProcessBuilder::create( [ $this->config->avconv, - '-v', 'quiet', + '-v', 'error', //Vimeo needs a correct user-agent '-user_agent', $this->getProp(null, null, 'dump-user-agent'), '-i', $url,