summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-10-18 17:15:47 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-10-18 17:15:47 +0800
commitf322bfb0638aeeb527459ebcf00f8a3dde26280c (patch)
treec9a42ebb1509d570b5e54284b74a940954bc5b2e
parent014e880372e896cdd63f9075864d2a3bba60e706 (diff)
downloadyoutube-dl-f322bfb0638aeeb527459ebcf00f8a3dde26280c.tar.gz
youtube-dl-f322bfb0638aeeb527459ebcf00f8a3dde26280c.tar.xz
youtube-dl-f322bfb0638aeeb527459ebcf00f8a3dde26280c.zip
[twitter:card] Remove unneeded 'ext'
-rw-r--r--youtube_dl/extractor/twitter.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/youtube_dl/extractor/twitter.py b/youtube_dl/extractor/twitter.py
index 5f697782e..48bef5d80 100644
--- a/youtube_dl/extractor/twitter.py
+++ b/youtube_dl/extractor/twitter.py
@@ -64,13 +64,9 @@ class TwitterCardIE(InfoExtractor):
                 if 'vmapUrl' in config:
                     vmap_data = self._download_xml(config['vmapUrl'], video_id)
                     video_url = xpath_text(vmap_data, './/MediaFile').strip()
-                    f = {
+                    formats.append({
                         'url': video_url,
-                    }
-                    ext = re.search(r'\.([a-z0-9]{2,4})(\?.+)?$', video_url)
-                    if ext:
-                        f['ext'] = ext.group(1)
-                    formats.append(f)
+                    })
                     break   # same video regardless of UA
                 continue