about summary refs log tree commit diff
path: root/youtube_dl/extractor/archiveorg.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-14 14:45:04 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-14 14:45:04 +0200
commit471a5ee908ee765c1ba1ff6a41051bcf71065064 (patch)
treee63b69894ee2e6847ef534061ea1a9ea0dba46dd /youtube_dl/extractor/archiveorg.py
parent19e1d35989970831007b7ca5d988fe0454f08a1f (diff)
downloadyoutube-dl-471a5ee908ee765c1ba1ff6a41051bcf71065064.tar.gz
youtube-dl-471a5ee908ee765c1ba1ff6a41051bcf71065064.tar.xz
youtube-dl-471a5ee908ee765c1ba1ff6a41051bcf71065064.zip
Set the ext field for each format
Diffstat (limited to 'youtube_dl/extractor/archiveorg.py')
-rw-r--r--youtube_dl/extractor/archiveorg.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/youtube_dl/extractor/archiveorg.py b/youtube_dl/extractor/archiveorg.py
index 7efd1d823..61ce4469a 100644
--- a/youtube_dl/extractor/archiveorg.py
+++ b/youtube_dl/extractor/archiveorg.py
@@ -46,6 +46,8 @@ class ArchiveOrgIE(InfoExtractor):
             for fn,fdata in data['files'].items()
             if 'Video' in fdata['format']]
         formats.sort(key=lambda fdata: fdata['file_size'])
+        for f in formats:
+            f['ext'] = determine_ext(f['url'])
 
         info = {
             '_type': 'video',
@@ -61,7 +63,6 @@ class ArchiveOrgIE(InfoExtractor):
             info['thumbnail'] = thumbnail
 
         # TODO: Remove when #980 has been merged
-        info['url'] = formats[-1]['url']
-        info['ext'] = determine_ext(formats[-1]['url'])
+        info.update(formats[-1])
 
-        return info
\ No newline at end of file
+        return info