浏览代码

[nosvideo] Remove determine_ext usage (#3655)

Philipp Hagemeister 11 年之前
父节点
当前提交
b47ed50aaf
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      youtube_dl/extractor/nosvideo.py

+ 0 - 3
youtube_dl/extractor/nosvideo.py

@@ -7,7 +7,6 @@ from .common import InfoExtractor
 from ..utils import (
 from ..utils import (
     compat_urllib_parse,
     compat_urllib_parse,
     compat_urllib_request,
     compat_urllib_request,
-    determine_ext,
     xpath_with_ns,
     xpath_with_ns,
 )
 )
 
 
@@ -52,12 +51,10 @@ class NosVideoIE(InfoExtractor):
         title = _find(track, './xspf:title')
         title = _find(track, './xspf:title')
         url = _find(track, './xspf:file')
         url = _find(track, './xspf:file')
         thumbnail = _find(track, './xspf:image')
         thumbnail = _find(track, './xspf:image')
-        ext = determine_ext(title)
 
 
         formats = [{
         formats = [{
             'format_id': 'sd',
             'format_id': 'sd',
             'url': url,
             'url': url,
-            'ext': ext,
         }]
         }]
 
 
         return {
         return {