aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/tbs.py
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-09-12 13:14:44 +0200
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-09-12 13:14:44 +0200
commit6a19bfa390150fde01f5e865605114344ab68409 (patch)
treed87e9c55f031b529d6a6c2ca1a1e680407800f52 /youtube_dl/extractor/tbs.py
parent57e25a9c8a4791a370af77a3529d15c958eae4b3 (diff)
parent2f483758bc6a6661f1215c38161ee626d90ab655 (diff)
downloadyoutube-dl-6a19bfa390150fde01f5e865605114344ab68409.zip
youtube-dl-6a19bfa390150fde01f5e865605114344ab68409.tar.gz
youtube-dl-6a19bfa390150fde01f5e865605114344ab68409.tar.bz2
Merge branch 'upstream'
Diffstat (limited to 'youtube_dl/extractor/tbs.py')
-rw-r--r--youtube_dl/extractor/tbs.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/youtube_dl/extractor/tbs.py b/youtube_dl/extractor/tbs.py
index bf93eb8..e947453 100644
--- a/youtube_dl/extractor/tbs.py
+++ b/youtube_dl/extractor/tbs.py
@@ -8,6 +8,9 @@ from ..utils import extract_attributes
class TBSIE(TurnerBaseIE):
+ # https://github.com/rg3/youtube-dl/issues/13658
+ _WORKING = False
+
_VALID_URL = r'https?://(?:www\.)?(?P<site>tbs|tntdrama)\.com/videos/(?:[^/]+/)+(?P<id>[^/?#]+)\.html'
_TESTS = [{
'url': 'http://www.tbs.com/videos/people-of-earth/season-1/extras/2007318/theatrical-trailer.html',
@@ -17,7 +20,8 @@ class TBSIE(TurnerBaseIE):
'ext': 'mp4',
'title': 'Theatrical Trailer',
'description': 'Catch the latest comedy from TBS, People of Earth, premiering Halloween night--Monday, October 31, at 9/8c.',
- }
+ },
+ 'skip': 'TBS videos are deleted after a while',
}, {
'url': 'http://www.tntdrama.com/videos/good-behavior/season-1/extras/1538823/you-better-run.html',
'md5': 'ce53c6ead5e9f3280b4ad2031a6fab56',
@@ -26,7 +30,8 @@ class TBSIE(TurnerBaseIE):
'ext': 'mp4',
'title': 'You Better Run',
'description': 'Letty Raines must figure out what she\'s running toward while running away from her past. Good Behavior premieres November 15 at 9/8c.',
- }
+ },
+ 'skip': 'TBS videos are deleted after a while',
}]
def _real_extract(self, url):