diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-09-18 18:40:19 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-09-18 18:40:19 +0200 |
commit | e2e5dae64da60c37af65c7cffd18475a30fcbad3 (patch) | |
tree | 10768c8c1cf570826d725589bb30b706680e498b /youtube_dl/YoutubeDL.py | |
parent | 09b23c902b5ab4a4ca9607128128d110a3c41875 (diff) |
Add -f m4a
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 9519594c9..eaba40bf2 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -708,7 +708,7 @@ class YoutubeDL(object): if video_formats: return video_formats[0] else: - extensions = ['mp4', 'flv', 'webm', '3gp'] + extensions = ['mp4', 'flv', 'webm', '3gp', 'm4a'] if format_spec in extensions: filter_f = lambda f: f['ext'] == format_spec else: |