From 6169894595f81222ca0e2d305d274d484127898e Mon Sep 17 00:00:00 2001 From: IMLink Date: Tue, 10 Oct 2017 13:40:39 +0800 Subject: [PATCH] Update youku.py fix issues #2405 --- src/you_get/extractors/youku.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/you_get/extractors/youku.py b/src/you_get/extractors/youku.py index ea8b6337..fb8c57fa 100644 --- a/src/you_get/extractors/youku.py +++ b/src/you_get/extractors/youku.py @@ -43,8 +43,12 @@ class Youku(VideoExtractor): # Last updated: 2015-11-24 stream_types = [ + {'id': 'mp4hd3v2', 'alias-of': 'hd3v2'}, + {'id': 'hd3v2', 'container': 'mp4', 'video_profile': '1080P'}, {'id': 'mp4hd3', 'alias-of': 'hd3'}, {'id': 'hd3', 'container': 'flv', 'video_profile': '1080P'}, + {'id': 'mp4hd2v2', 'alias-of': 'hd2v2'}, + {'id': 'hd2v2', 'container': 'mp4', 'video_profile': '超清'}, {'id': 'mp4hd2', 'alias-of': 'hd2'}, {'id': 'hd2', 'container': 'flv', 'video_profile': '超清'}, {'id': 'mp4hd', 'alias-of': 'mp4'},