mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:37:06 -05:00 
			
		
		
		
	Merge branch 'master' of github.com:rg3/youtube-dl
This commit is contained in:
		@@ -361,12 +361,14 @@ class TestUtil(unittest.TestCase):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    def test_compat_getenv(self):
 | 
					    def test_compat_getenv(self):
 | 
				
			||||||
        test_str = 'тест'
 | 
					        test_str = 'тест'
 | 
				
			||||||
        os.environ['YOUTUBE-DL-TEST'] = test_str.encode(get_filesystem_encoding())
 | 
					        os.environ['YOUTUBE-DL-TEST'] = (test_str if sys.version_info >= (3, 0)
 | 
				
			||||||
 | 
					            else test_str.encode(get_filesystem_encoding()))
 | 
				
			||||||
        self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
 | 
					        self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def test_compat_expanduser(self):
 | 
					    def test_compat_expanduser(self):
 | 
				
			||||||
        test_str = 'C:\Documents and Settings\тест\Application Data'
 | 
					        test_str = 'C:\Documents and Settings\тест\Application Data'
 | 
				
			||||||
        os.environ['HOME'] = test_str.encode(get_filesystem_encoding())
 | 
					        os.environ['HOME'] = (test_str if sys.version_info >= (3, 0)
 | 
				
			||||||
 | 
					            else test_str.encode(get_filesystem_encoding()))
 | 
				
			||||||
        self.assertEqual(compat_expanduser('~'), test_str)
 | 
					        self.assertEqual(compat_expanduser('~'), test_str)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if __name__ == '__main__':
 | 
					if __name__ == '__main__':
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -252,7 +252,7 @@ from .newstube import NewstubeIE
 | 
				
			|||||||
from .nfb import NFBIE
 | 
					from .nfb import NFBIE
 | 
				
			||||||
from .nfl import NFLIE
 | 
					from .nfl import NFLIE
 | 
				
			||||||
from .nhl import NHLIE, NHLVideocenterIE
 | 
					from .nhl import NHLIE, NHLVideocenterIE
 | 
				
			||||||
from .niconico import NiconicoIE
 | 
					from .niconico import NiconicoIE, NiconicoPlaylistIE
 | 
				
			||||||
from .ninegag import NineGagIE
 | 
					from .ninegag import NineGagIE
 | 
				
			||||||
from .noco import NocoIE
 | 
					from .noco import NocoIE
 | 
				
			||||||
from .normalboots import NormalbootsIE
 | 
					from .normalboots import NormalbootsIE
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,6 +7,7 @@ from .common import InfoExtractor
 | 
				
			|||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    compat_urllib_parse,
 | 
					    compat_urllib_parse,
 | 
				
			||||||
    ExtractorError,
 | 
					    ExtractorError,
 | 
				
			||||||
 | 
					    clean_html,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -31,6 +32,11 @@ class NaverIE(InfoExtractor):
 | 
				
			|||||||
        m_id = re.search(r'var rmcPlayer = new nhn.rmcnmv.RMCVideoPlayer\("(.+?)", "(.+?)"',
 | 
					        m_id = re.search(r'var rmcPlayer = new nhn.rmcnmv.RMCVideoPlayer\("(.+?)", "(.+?)"',
 | 
				
			||||||
            webpage)
 | 
					            webpage)
 | 
				
			||||||
        if m_id is None:
 | 
					        if m_id is None:
 | 
				
			||||||
 | 
					            m_error = re.search(
 | 
				
			||||||
 | 
					                r'(?s)<div class="nation_error">\s*(?:<!--.*?-->)?\s*<p class="[^"]+">(?P<msg>.+?)</p>\s*</div>',
 | 
				
			||||||
 | 
					                webpage)
 | 
				
			||||||
 | 
					            if m_error:
 | 
				
			||||||
 | 
					                raise ExtractorError(clean_html(m_error.group('msg')), expected=True)
 | 
				
			||||||
            raise ExtractorError('couldn\'t extract vid and key')
 | 
					            raise ExtractorError('couldn\'t extract vid and key')
 | 
				
			||||||
        vid = m_id.group(1)
 | 
					        vid = m_id.group(1)
 | 
				
			||||||
        key = m_id.group(2)
 | 
					        key = m_id.group(2)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,6 +2,7 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					import json
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
@@ -146,3 +147,36 @@ class NiconicoIE(InfoExtractor):
 | 
				
			|||||||
            'duration': duration,
 | 
					            'duration': duration,
 | 
				
			||||||
            'webpage_url': webpage_url,
 | 
					            'webpage_url': webpage_url,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class NiconicoPlaylistIE(InfoExtractor):
 | 
				
			||||||
 | 
					    _VALID_URL = r'https?://www\.nicovideo\.jp/mylist/(?P<id>\d+)'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    _TEST = {
 | 
				
			||||||
 | 
					        'url': 'http://www.nicovideo.jp/mylist/27411728',
 | 
				
			||||||
 | 
					        'info_dict': {
 | 
				
			||||||
 | 
					            'id': '27411728',
 | 
				
			||||||
 | 
					            'title': 'AKB48のオールナイトニッポン',
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        'playlist_mincount': 225,
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
 | 
					        list_id = self._match_id(url)
 | 
				
			||||||
 | 
					        webpage = self._download_webpage(url, list_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        entries_json = self._search_regex(r'Mylist\.preload\(\d+, (\[.*\])\);',
 | 
				
			||||||
 | 
					            webpage, 'entries')
 | 
				
			||||||
 | 
					        entries = json.loads(entries_json)
 | 
				
			||||||
 | 
					        entries = [{
 | 
				
			||||||
 | 
					            '_type': 'url',
 | 
				
			||||||
 | 
					            'ie_key': NiconicoIE.ie_key(),
 | 
				
			||||||
 | 
					            'url': 'http://www.nicovideo.jp/watch/%s' % entry['item_id'],
 | 
				
			||||||
 | 
					        } for entry in entries]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        return {
 | 
				
			||||||
 | 
					            '_type': 'playlist',
 | 
				
			||||||
 | 
					            'title': self._search_regex(r'\s+name: "(.*?)"', webpage, 'title'),
 | 
				
			||||||
 | 
					            'id': list_id,
 | 
				
			||||||
 | 
					            'entries': entries,
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,13 +1,12 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import re
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
 | 
					from ..utils import xpath_text
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class TruTubeIE(InfoExtractor):
 | 
					class TruTubeIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'https?://(?:www\.)?trutube\.tv/video/(?P<id>[0-9]+)/.*'
 | 
					    _VALID_URL = r'https?://(?:www\.)?trutube\.tv/(?:video/|nuevo/player/embed\.php\?v=)(?P<id>[0-9]+)'
 | 
				
			||||||
    _TEST = {
 | 
					    _TESTS = [{
 | 
				
			||||||
        'url': 'http://trutube.tv/video/14880/Ramses-II-Proven-To-Be-A-Red-Headed-Caucasoid-',
 | 
					        'url': 'http://trutube.tv/video/14880/Ramses-II-Proven-To-Be-A-Red-Headed-Caucasoid-',
 | 
				
			||||||
        'md5': 'c5b6e301b0a2040b074746cbeaa26ca1',
 | 
					        'md5': 'c5b6e301b0a2040b074746cbeaa26ca1',
 | 
				
			||||||
        'info_dict': {
 | 
					        'info_dict': {
 | 
				
			||||||
@@ -16,29 +15,26 @@ class TruTubeIE(InfoExtractor):
 | 
				
			|||||||
            'title': 'Ramses II - Proven To Be A Red Headed Caucasoid',
 | 
					            'title': 'Ramses II - Proven To Be A Red Headed Caucasoid',
 | 
				
			||||||
            'thumbnail': 're:^http:.*\.jpg$',
 | 
					            'thumbnail': 're:^http:.*\.jpg$',
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }, {
 | 
				
			||||||
 | 
					        'url': 'https://trutube.tv/nuevo/player/embed.php?v=14880',
 | 
				
			||||||
 | 
					        'only_matching': True,
 | 
				
			||||||
 | 
					    }]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
        video_id = mobj.group('id')
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        config = self._download_xml(
 | 
				
			||||||
        video_title = self._og_search_title(webpage).strip()
 | 
					            'https://trutube.tv/nuevo/player/config.php?v=%s' % video_id,
 | 
				
			||||||
        thumbnail = self._search_regex(
 | 
					            video_id, transform_source=lambda s: s.strip())
 | 
				
			||||||
            r"var splash_img = '([^']+)';", webpage, 'thumbnail', fatal=False)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        all_formats = re.finditer(
 | 
					        # filehd is always 404
 | 
				
			||||||
            r"var (?P<key>[a-z]+)_video_file\s*=\s*'(?P<url>[^']+)';", webpage)
 | 
					        video_url = xpath_text(config, './file', 'video URL', fatal=True)
 | 
				
			||||||
        formats = [{
 | 
					        title = xpath_text(config, './title', 'title')
 | 
				
			||||||
            'format_id': m.group('key'),
 | 
					        thumbnail = xpath_text(config, './image', ' thumbnail')
 | 
				
			||||||
            'quality': -i,
 | 
					 | 
				
			||||||
            'url': m.group('url'),
 | 
					 | 
				
			||||||
        } for i, m in enumerate(all_formats)]
 | 
					 | 
				
			||||||
        self._sort_formats(formats)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            'id': video_id,
 | 
					            'id': video_id,
 | 
				
			||||||
            'title': video_title,
 | 
					            'url': video_url,
 | 
				
			||||||
            'formats': formats,
 | 
					            'title': title,
 | 
				
			||||||
            'thumbnail': thumbnail,
 | 
					            'thumbnail': thumbnail,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user