aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/pyvideo.py
blob: 5c47993e7844ee4c46f2e3a3db7d40e7670b5fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import re

from .common import InfoExtractor
from ..utils import determine_ext


class PyvideoIE(InfoExtractor):
    _VALID_URL = r'(?:http://)?(?:www\.)?pyvideo\.org/video/(\d+)/(.*)'
    _TEST = {
        u'url': u'http://pyvideo.org/video/1737/become-a-logging-expert-in-30-minutes',
        u'file': u'Become a logging expert in 30 minutes-24_4WWkSmNo.mp4',
        u'md5': u'bf08cae24e1601027f98ae1262c299ad',
        u'info_dict': {
            u"title": u"Become a logging expert in 30 minutes"
        }
    }

    def _real_extract(self, url):
        mobj = re.match(self._VALID_URL, url)
        video_id = mobj.group(2)
        webpage = self._download_webpage(url, video_id)
        m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', webpage)

        if m_youtube is not None:
            return self.url_result(m_youtube.group(1), 'Youtube')