mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-16 08:32:55 +08:00
32 lines
796 B
Python
Executable File
32 lines
796 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
IEs = [
|
|
('Youtube', ['YoutubePlaylistIE', 'YoutubeChannelIE',
|
|
'YoutubeUserIE', 'YoutubeSearchIE', 'YoutubeIE']),
|
|
('Generic', ['GenericIE']),
|
|
]
|
|
|
|
|
|
IE_list = []
|
|
IE_dict = {}
|
|
for module, IE_names in IEs:
|
|
_mod = __import__('youtube_dl.InfoExtractors.' + module,
|
|
globals(), fromlist=IE_names)
|
|
for IE_name in IE_names:
|
|
IE = getattr(_mod, IE_name)
|
|
IE_list.append(IE)
|
|
IE_dict[IE_name] = IE
|
|
|
|
|
|
def gen_extractors():
|
|
""" Return a list of an instance of every supported extractor """
|
|
return [ IE() for IE in IE_list ]
|
|
|
|
def get_info_extractor(IE_name):
|
|
"""Returns the info extractor class with the given ie_name"""
|
|
return IE_dict[IE_name + 'IE']
|