mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-10 06:37:17 +08:00
[Anysex] removed extractor to be handled by generic extractor
anysex video urls are in html5 video tags which can be extracted by generic extractor Adjusted common.py to be able to sort formats founf from anysex
This commit is contained in:
parent
063761dcd8
commit
685e961923
@ -2483,7 +2483,7 @@ class InfoExtractor(object):
|
||||
# in the wild
|
||||
f.update({
|
||||
'height': int_or_none(source_attributes.get('res')),
|
||||
'format_id': source_attributes.get('label'),
|
||||
'format_id': source_attributes.get('label') or source_attributes.get('title'),
|
||||
})
|
||||
f.update(formats[0])
|
||||
media_info['formats'].append(f)
|
||||
|
@ -39,7 +39,6 @@ from .amcnetworks import AMCNetworksIE
|
||||
from .americastestkitchen import AmericasTestKitchenIE
|
||||
from .animeondemand import AnimeOnDemandIE
|
||||
from .anvato import AnvatoIE
|
||||
from .anysex import AnySexIE
|
||||
from .aol import AolIE
|
||||
from .allocine import AllocineIE
|
||||
from .aliexpress import AliExpressLiveIE
|
||||
|
Loading…
x
Reference in New Issue
Block a user