Browse Source

[nosvideo] Remove determine_ext usage (#3655)

totalwebcasting
Philipp Hagemeister 10 years ago
parent
commit
b47ed50aaf
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      youtube_dl/extractor/nosvideo.py

+ 0
- 3
youtube_dl/extractor/nosvideo.py View File

@ -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 {


Loading…
Cancel
Save