diff options
author | Rogério Brito <rbrito@ime.usp.br> | 2013-10-18 17:50:55 -0300 |
---|---|---|
committer | Rogério Brito <rbrito@ime.usp.br> | 2013-10-18 17:50:55 -0300 |
commit | 16f36a6fc92d6ab89293e45de65475455fbc1b47 (patch) | |
tree | f01156cf7208b687eb6e22c5d2ce1619a60f9932 /youtube_dl/extractor/youtube.py | |
parent | cce722b79ccbe0883a1fdda4f13fe7a3f9465462 (diff) |
extractor: youtube: Set extension of AAC audio formats to m4a.
This, in particular, eases downloading both audio and videos in DASH formats
before muxing them, which alleviates the problem that I exposed on issue
Furthermore, one may argue that this is, indeed, the case for correctness's
sake.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
Diffstat (limited to 'youtube_dl/extractor/youtube.py')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index fb7c42830..cfc142f26 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -237,9 +237,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor): '137': 'mp4', '138': 'mp4', '139': 'mp4', - '140': 'mp4', - '141': 'mp4', - '160': 'mp4', + '140': 'm4a', + '141': 'm4a', + '160': 'm4a', # Dash webm '171': 'webm', |