aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/cinchcast.py
diff options
context:
space:
mode:
authorsepro <4618135+seproDev@users.noreply.github.com>2023-11-26 04:09:59 +0100
committerGitHub <noreply@github.com>2023-11-26 03:09:59 +0000
commit9751a457cfdb18bf99d9ee0d10e4e6a594502bbf (patch)
tree72d8f0b497ec27b3bfafc64194ec3882ee1c5a49 /yt_dlp/extractor/cinchcast.py
parent5a230233d6fce06f4abd1fce0dc92b948e6f780b (diff)
[cleanup] Remove dead extractors (#8604)
Closes #1609, Closes #3232, Closes #4763, Closes #6026, Closes #6322, Closes #7912 Authored by: seproDev
Diffstat (limited to 'yt_dlp/extractor/cinchcast.py')
-rw-r--r--yt_dlp/extractor/cinchcast.py56
1 files changed, 0 insertions, 56 deletions
diff --git a/yt_dlp/extractor/cinchcast.py b/yt_dlp/extractor/cinchcast.py
deleted file mode 100644
index 7a7ea8b22..000000000
--- a/yt_dlp/extractor/cinchcast.py
+++ /dev/null
@@ -1,56 +0,0 @@
-from .common import InfoExtractor
-from ..utils import (
- unified_strdate,
- xpath_text,
-)
-
-
-class CinchcastIE(InfoExtractor):
- _VALID_URL = r'https?://player\.cinchcast\.com/.*?(?:assetId|show_id)=(?P<id>[0-9]+)'
- _EMBED_REGEX = [r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.cinchcast\.com/.+?)\1']
-
- _TESTS = [{
- 'url': 'http://player.cinchcast.com/?show_id=5258197&platformId=1&assetType=single',
- 'info_dict': {
- 'id': '5258197',
- 'ext': 'mp3',
- 'title': 'Train Your Brain to Up Your Game with Coach Mandy',
- 'upload_date': '20130816',
- },
- }, {
- # Actual test is run in generic, look for undergroundwellness
- 'url': 'http://player.cinchcast.com/?platformId=1&#038;assetType=single&#038;assetId=7141703',
- 'only_matching': True,
- }]
-
- def _real_extract(self, url):
- video_id = self._match_id(url)
- doc = self._download_xml(
- 'http://www.blogtalkradio.com/playerasset/mrss?assetType=single&assetId=%s' % video_id,
- video_id)
-
- item = doc.find('.//item')
- title = xpath_text(item, './title', fatal=True)
- date_str = xpath_text(
- item, './{http://developer.longtailvideo.com/trac/}date')
- upload_date = unified_strdate(date_str, day_first=False)
- # duration is present but wrong
- formats = [{
- 'format_id': 'main',
- 'url': item.find('./{http://search.yahoo.com/mrss/}content').attrib['url'],
- }]
- backup_url = xpath_text(
- item, './{http://developer.longtailvideo.com/trac/}backupContent')
- if backup_url:
- formats.append({
- 'preference': 2, # seems to be more reliable
- 'format_id': 'backup',
- 'url': backup_url,
- })
-
- return {
- 'id': video_id,
- 'title': title,
- 'upload_date': upload_date,
- 'formats': formats,
- }