youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b47ed50aaf58ce9f1c480fcb11acfd3514d0e684
parent 1b8477729a07f3b87f4c20175cf337335100341c
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue,  2 Sep 2014 00:16:36 +0200

[nosvideo] Remove determine_ext usage (#3655)

Diffstat:
Myoutube_dl/extractor/nosvideo.py | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git 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 {