about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo.valsorda@gmail.com>2013-05-20 11:54:21 +0200
committerFilippo Valsorda <filippo.valsorda@gmail.com>2013-05-20 11:54:21 +0200
commitf008688520ad0fadcf80601ce193d352cc0d4bd3 (patch)
treeff90c370c15a0eb59565a059057349a7216dc8ca
parent5b68ea215b834b04fa1b3d3e9462d59b430cb058 (diff)
downloadyoutube-dl-f008688520ad0fadcf80601ce193d352cc0d4bd3.tar.gz
youtube-dl-f008688520ad0fadcf80601ce193d352cc0d4bd3.tar.xz
youtube-dl-f008688520ad0fadcf80601ce193d352cc0d4bd3.zip
make rtmpdump inherit the verbose option for debugging
-rw-r--r--youtube_dl/FileDownloader.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index 75fe0eea9..49f3a8712 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -763,6 +763,7 @@ class FileDownloader(object):
         # the connection was interrumpted and resuming appears to be
         # possible. This is part of rtmpdump's normal usage, AFAIK.
         basic_args = ['rtmpdump', '-q', '-r', url, '-o', tmpfilename]
+        if self.params.get('verbose', False): basic_args[1] = '-v'
         if player_url is not None:
             basic_args += ['-W', player_url]
         if page_url is not None: