about summary refs log tree commit diff
path: root/youtube_dl/extractor/commonprotocols.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-10-07 19:22:30 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-10-07 19:24:22 +0800
commit9dcd6fd3aae77571116ee8b823b6b9224d0ef2ad (patch)
tree9ac59988952a278ccd52714d29b39a5415e98957 /youtube_dl/extractor/commonprotocols.py
parent98763ee354ffc13a57f28dbd006729affacb6d30 (diff)
downloadyoutube-dl-9dcd6fd3aae77571116ee8b823b6b9224d0ef2ad.tar.gz
youtube-dl-9dcd6fd3aae77571116ee8b823b6b9224d0ef2ad.tar.xz
youtube-dl-9dcd6fd3aae77571116ee8b823b6b9224d0ef2ad.zip
[generic,commonprotocols] Move mms suuport from GenericIE
And use _generic_* helpers in those extractors
Diffstat (limited to 'youtube_dl/extractor/commonprotocols.py')
-rw-r--r--youtube_dl/extractor/commonprotocols.py36
1 files changed, 30 insertions, 6 deletions
diff --git a/youtube_dl/extractor/commonprotocols.py b/youtube_dl/extractor/commonprotocols.py
index 5d130a170..d98331a4e 100644
--- a/youtube_dl/extractor/commonprotocols.py
+++ b/youtube_dl/extractor/commonprotocols.py
@@ -1,13 +1,9 @@
 from __future__ import unicode_literals
 
-import os
-
 from .common import InfoExtractor
 from ..compat import (
-    compat_urllib_parse_unquote,
     compat_urlparse,
 )
-from ..utils import url_basename
 
 
 class RtmpIE(InfoExtractor):
@@ -23,8 +19,8 @@ class RtmpIE(InfoExtractor):
     }]
 
     def _real_extract(self, url):
-        video_id = compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
-        title = compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0])
+        video_id = self._generic_id(url)
+        title = self._generic_title(url)
         return {
             'id': video_id,
             'title': title,
@@ -34,3 +30,31 @@ class RtmpIE(InfoExtractor):
                 'format_id': compat_urlparse.urlparse(url).scheme,
             }],
         }
+
+
+class MmsIE(InfoExtractor):
+    IE_DESC = False  # Do not list
+    _VALID_URL = r'(?i)mms://.+'
+
+    _TEST = {
+        # Direct MMS link
+        'url': 'mms://kentro.kaist.ac.kr/200907/MilesReid(0709).wmv',
+        'info_dict': {
+            'id': 'MilesReid(0709)',
+            'ext': 'wmv',
+            'title': 'MilesReid(0709)',
+        },
+        'params': {
+            'skip_download': True,  # rtsp downloads, requiring mplayer or mpv
+        },
+    }
+
+    def _real_extract(self, url):
+        video_id = self._generic_id(url)
+        title = self._generic_title(url)
+
+        return {
+            'id': video_id,
+            'title': title,
+            'url': url,
+        }