aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/rbmaradio.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-02-02 12:03:36 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-02-02 12:03:36 +0100
commitd55433bbfd9b7237bd7a52f2dc1ca7bd991a1367 (patch)
treea02672df52177c76741d4c63cb58648a69c3c3fd /youtube_dl/extractor/rbmaradio.py
parentf0ce2bc1c5880d9a92dda2dc543d21c4a8566a2f (diff)
downloadyoutube-dl-d55433bbfd9b7237bd7a52f2dc1ca7bd991a1367.tar.xz
Remove unused imports and simplify
Diffstat (limited to 'youtube_dl/extractor/rbmaradio.py')
-rw-r--r--youtube_dl/extractor/rbmaradio.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/rbmaradio.py b/youtube_dl/extractor/rbmaradio.py
index b9cb7abd1..2c53ed2e1 100644
--- a/youtube_dl/extractor/rbmaradio.py
+++ b/youtube_dl/extractor/rbmaradio.py
@@ -6,8 +6,6 @@ import re
from .common import InfoExtractor
from ..utils import (
- compat_urllib_parse_urlparse,
-
ExtractorError,
)
@@ -16,9 +14,10 @@ class RBMARadioIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?rbmaradio\.com/shows/(?P<videoID>[^/]+)$'
_TEST = {
'url': 'http://www.rbmaradio.com/shows/ford-lopatin-live-at-primavera-sound-2011',
- 'file': 'ford-lopatin-live-at-primavera-sound-2011.mp3',
'md5': '6bc6f9bcb18994b4c983bc3bf4384d95',
'info_dict': {
+ 'id': 'ford-lopatin-live-at-primavera-sound-2011',
+ 'ext': 'mp3',
"uploader_id": "ford-lopatin",
"location": "Spain",
"description": "Joel Ford and Daniel ’Oneohtrix Point Never’ Lopatin fly their midified pop extravaganza to Spain. Live at Primavera Sound 2011.",
@@ -42,7 +41,6 @@ class RBMARadioIE(InfoExtractor):
raise ExtractorError('Invalid JSON: ' + str(e))
video_url = data['akamai_url'] + '&cbr=256'
- url_parts = compat_urllib_parse_urlparse(video_url)
return {
'id': video_id,