summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-02 00:16:36 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-02 00:17:04 +0200
commitb47ed50aaf58ce9f1c480fcb11acfd3514d0e684 (patch)
tree39c54afb92e4bb650bd6be39c6272de71fb5681e
parent1b8477729a07f3b87f4c20175cf337335100341c (diff)
downloadyoutube-dl-b47ed50aaf58ce9f1c480fcb11acfd3514d0e684.tar.gz
youtube-dl-b47ed50aaf58ce9f1c480fcb11acfd3514d0e684.tar.xz
youtube-dl-b47ed50aaf58ce9f1c480fcb11acfd3514d0e684.zip
[nosvideo] Remove determine_ext usage (#3655)
-rw-r--r--youtube_dl/extractor/nosvideo.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/youtube_dl/extractor/nosvideo.py b/youtube_dl/extractor/nosvideo.py
index dbb03613b..095965add 100644
--- a/youtube_dl/extractor/nosvideo.py
+++ b/youtube_dl/extractor/nosvideo.py
@@ -7,7 +7,6 @@ from .common import InfoExtractor
 from ..utils import (
     compat_urllib_parse,
     compat_urllib_request,
-    determine_ext,
     xpath_with_ns,
 )
 
@@ -52,12 +51,10 @@ class NosVideoIE(InfoExtractor):
         title = _find(track, './xspf:title')
         url = _find(track, './xspf:file')
         thumbnail = _find(track, './xspf:image')
-        ext = determine_ext(title)
 
         formats = [{
             'format_id': 'sd',
             'url': url,
-            'ext': ext,
         }]
 
         return {