Message for delete video it's not an error.
authorJuan M <joksnet@gmail.com>
Sat, 23 Feb 2013 21:52:52 +0000 (22:52 +0100)
committerJuan M <joksnet@gmail.com>
Sat, 23 Feb 2013 21:52:52 +0000 (22:52 +0100)
When using youtube-dl from another python script with the quiet option
on, and a post procesor for extract the audio. The message of deleting
video shows in the first script logs (as it goes to stderr).

There is no way to keep this quiet as it's treated as an error, even if,
for me, it's not.

youtube_dl/FileDownloader.py

index 53c2d1dce0fcc902286f25707013021eba35f726..192ad37d2bb81a30395cc2b9ce965464c4cfeed6 100644 (file)
@@ -552,7 +552,7 @@ class FileDownloader(object):
                 self.to_stderr(u'ERROR: ' + e.msg)
         if keep_video is False and not self.params.get('keepvideo', False):
             try:
-                self.to_stderr(u'Deleting original file %s (pass -k to keep)' % filename)
+                self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)
                 os.remove(encodeFilename(filename))
             except (IOError, OSError):
                 self.to_stderr(u'WARNING: Unable to remove downloaded video file')