Browse Source

[XHamsterIE] Fix HD video detection

totalwebcasting
rzhxeo 11 years ago
parent
commit
8ca6b8fba1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/xhamster.py

+ 1
- 1
youtube_dl/extractor/xhamster.py View File

@ -46,7 +46,7 @@ class XHamsterIE(InfoExtractor):
return mobj.group('server')+'/key='+mobj.group('file')
def is_hd(webpage):
return webpage.find('<div class=\'icon iconHD\'>') != -1
return webpage.find('<div class=\'icon iconHD\'') != -1
mobj = re.match(self._VALID_URL, url)


Loading…
Cancel
Save