diff options
| author | remitamine <remitamine@gmail.com> | 2016-04-29 11:14:42 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2016-04-29 11:24:10 +0100 | 
| commit | 67167920db50e818c9fca20579c8a05eb2218f86 (patch) | |
| tree | 4421952a276d7f68ad47aa124115215b58f02ca3 /youtube_dl/extractor/generic.py | |
| parent | 14638e291511c3305b70dce64e9bd97686e9da93 (diff) | |
[viewlift] replace SnagFilms extractors
- add support for other sites that use the same logic
- improve format extraction and sorting
Diffstat (limited to 'youtube_dl/extractor/generic.py')
| -rw-r--r-- | youtube_dl/extractor/generic.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index a95501d86..0f1eb7fa6 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -51,7 +51,7 @@ from .tnaflix import TNAFlixNetworkEmbedIE  from .vimeo import VimeoIE  from .dailymotion import DailymotionCloudIE  from .onionstudios import OnionStudiosIE -from .snagfilms import SnagFilmsEmbedIE +from .viewlift import ViewLiftEmbedIE  from .screenwavemedia import ScreenwaveMediaIE  from .mtv import MTVServicesEmbeddedIE  from .pladform import PladformIE @@ -1924,10 +1924,10 @@ class GenericIE(InfoExtractor):          if onionstudios_url:              return self.url_result(onionstudios_url) -        # Look for SnagFilms embeds -        snagfilms_url = SnagFilmsEmbedIE._extract_url(webpage) -        if snagfilms_url: -            return self.url_result(snagfilms_url) +        # Look for ViewLift embeds +        viewlift_url = ViewLiftEmbedIE._extract_url(webpage) +        if viewlift_url: +            return self.url_result(viewlift_url)          # Look for JWPlatform embeds          jwplatform_url = JWPlatformIE._extract_url(webpage) | 
