1
0
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:
JChris246 2019-03-13 21:10:10 -04:00
parent 063761dcd8
commit 685e961923
2 changed files with 1 additions and 2 deletions

View File

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

View File

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