6 changed files with 154 additions and 0 deletions
Split View
Diff Options
-
82test/test_write_annotations.py
-
17youtube_dl/YoutubeDL.py
-
4youtube_dl/__init__.py
-
1youtube_dl/extractor/__init__.py
-
40youtube_dl/extractor/videopremium.py
-
10youtube_dl/extractor/youtube.py
@ -0,0 +1,82 @@ |
|||
#!/usr/bin/env python |
|||
# coding: utf-8 |
|||
|
|||
import xml.etree.ElementTree |
|||
import os |
|||
import sys |
|||
import unittest |
|||
|
|||
# Allow direct execution |
|||
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
|||
|
|||
import youtube_dl.YoutubeDL |
|||
import youtube_dl.extractor |
|||
from youtube_dl.utils import * |
|||
from .helper import try_rm |
|||
|
|||
PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json") |
|||
|
|||
# General configuration (from __init__, not very elegant...) |
|||
jar = compat_cookiejar.CookieJar() |
|||
cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar) |
|||
proxy_handler = compat_urllib_request.ProxyHandler() |
|||
opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler()) |
|||
compat_urllib_request.install_opener(opener) |
|||
|
|||
class YoutubeDL(youtube_dl.YoutubeDL): |
|||
def __init__(self, *args, **kwargs): |
|||
super(YoutubeDL, self).__init__(*args, **kwargs) |
|||
self.to_stderr = self.to_screen |
|||
|
|||
with io.open(PARAMETERS_FILE, encoding='utf-8') as pf: |
|||
params = json.load(pf) |
|||
params['writeannotations'] = True |
|||
params['skip_download'] = True |
|||
params['writeinfojson'] = False |
|||
params['format'] = 'flv' |
|||
|
|||
TEST_ID = 'gr51aVj-mLg' |
|||
ANNOTATIONS_FILE = TEST_ID + '.flv.annotations.xml' |
|||
EXPECTED_ANNOTATIONS = ['Speech bubble', 'Note', 'Title', 'Spotlight', 'Label'] |
|||
|
|||
class TestAnnotations(unittest.TestCase): |
|||
def setUp(self): |
|||
# Clear old files |
|||
self.tearDown() |
|||
|
|||
|
|||
def test_info_json(self): |
|||
expected = list(EXPECTED_ANNOTATIONS) #Two annotations could have the same text. |
|||
ie = youtube_dl.extractor.YoutubeIE() |
|||
ydl = YoutubeDL(params) |
|||
ydl.add_info_extractor(ie) |
|||
ydl.download([TEST_ID]) |
|||
self.assertTrue(os.path.exists(ANNOTATIONS_FILE)) |
|||
annoxml = None |
|||
with io.open(ANNOTATIONS_FILE, 'r', encoding='utf-8') as annof: |
|||
annoxml = xml.etree.ElementTree.parse(annof) |
|||
self.assertTrue(annoxml is not None, 'Failed to parse annotations XML') |
|||
root = annoxml.getroot() |
|||
self.assertEqual(root.tag, 'document') |
|||
annotationsTag = root.find('annotations') |
|||
self.assertEqual(annotationsTag.tag, 'annotations') |
|||
annotations = annotationsTag.findall('annotation') |
|||
|
|||
#Not all the annotations have TEXT children and the annotations are returned unsorted. |
|||
for a in annotations: |
|||
self.assertEqual(a.tag, 'annotation') |
|||
if a.get('type') == 'text': |
|||
textTag = a.find('TEXT') |
|||
text = textTag.text |
|||
self.assertTrue(text in expected) #assertIn only added in python 2.7 |
|||
#remove the first occurance, there could be more than one annotation with the same text |
|||
expected.remove(text) |
|||
#We should have seen (and removed) all the expected annotation texts. |
|||
self.assertEqual(len(expected), 0, 'Not all expected annotations were found.') |
|||
|
|||
|
|||
def tearDown(self): |
|||
try_rm(ANNOTATIONS_FILE) |
|||
|
|||
if __name__ == '__main__': |
|||
unittest.main() |
@ -0,0 +1,40 @@ |
|||
import re |
|||
import random |
|||
|
|||
from .common import InfoExtractor |
|||
|
|||
|
|||
class VideoPremiumIE(InfoExtractor): |
|||
_VALID_URL = r'(?:https?://)?(?:www\.)?videopremium\.tv/(?P<id>\w+)(?:/.*)?' |
|||
_TEST = { |
|||
u'url': u'http://videopremium.tv/4w7oadjsf156', |
|||
u'file': u'4w7oadjsf156.f4v', |
|||
u'info_dict': { |
|||
u"title": u"youtube-dl_test_video____a_________-BaW_jenozKc.mp4.mp4" |
|||
}, |
|||
u'params': { |
|||
u'skip_download': True, |
|||
}, |
|||
} |
|||
|
|||
def _real_extract(self, url): |
|||
mobj = re.match(self._VALID_URL, url) |
|||
|
|||
video_id = mobj.group('id') |
|||
webpage_url = 'http://videopremium.tv/' + video_id |
|||
webpage = self._download_webpage(webpage_url, video_id) |
|||
|
|||
self.report_extraction(video_id) |
|||
|
|||
video_title = self._html_search_regex(r'<h2(?:.*?)>\s*(.+?)\s*<', |
|||
webpage, u'video title') |
|||
|
|||
return [{ |
|||
'id': video_id, |
|||
'url': "rtmp://e%d.md.iplay.md/play" % random.randint(1, 16), |
|||
'play_path': "mp4:%s.f4v" % video_id, |
|||
'page_url': "http://videopremium.tv/" + video_id, |
|||
'player_url': "http://videopremium.tv/uplayer/uppod.swf", |
|||
'ext': 'f4v', |
|||
'title': video_title, |
|||
}] |
Write
Preview
Loading…
Cancel
Save