]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/__init__.py
3 from .arte
import ArteTvIE
4 from .bandcamp
import BandcampIE
5 from .bliptv
import BlipTVIE
, BlipTVUserIE
6 from .breakcom
import BreakIE
7 from .collegehumor
import CollegeHumorIE
8 from .comedycentral
import ComedyCentralIE
9 from .dailymotion
import DailymotionIE
10 from .depositfiles
import DepositFilesIE
11 from .eighttracks
import EightTracksIE
12 from .escapist
import EscapistIE
13 from .facebook
import FacebookIE
14 from .flickr
import FlickrIE
15 from .funnyordie
import FunnyOrDieIE
16 from .gametrailers
import GametrailersIE
17 from .generic
import GenericIE
18 from .googleplus
import GooglePlusIE
19 from .googlesearch
import GoogleSearchIE
20 from .howcast
import HowcastIE
21 from .hypem
import HypemIE
22 from .ina
import InaIE
23 from .infoq
import InfoQIE
24 from .jukebox
import JukeboxIE
25 from .justintv
import JustinTVIE
26 from .keek
import KeekIE
27 from .liveleak
import LiveLeakIE
28 from .metacafe
import MetacafeIE
29 from .mixcloud
import MixcloudIE
30 from .mtv
import MTVIE
31 from .myspass
import MySpassIE
32 from .myvideo
import MyVideoIE
33 from .nba
import NBAIE
34 from .photobucket
import PhotobucketIE
35 from .pornotube
import PornotubeIE
36 from .rbmaradio
import RBMARadioIE
37 from .redtube
import RedTubeIE
38 from .soundcloud
import SoundcloudIE
, SoundcloudSetIE
39 from .spiegel
import SpiegelIE
40 from .stanfordoc
import StanfordOpenClassroomIE
41 from .statigram
import StatigramIE
42 from .steam
import SteamIE
43 from .teamcoco
import TeamcocoIE
44 from .ted
import TEDIE
45 from .tudou
import TudouIE
46 from .tumblr
import TumblrIE
47 from .ustream
import UstreamIE
48 from .vbox7
import Vbox7IE
49 from .vevo
import VevoIE
50 from .vimeo
import VimeoIE
51 from .vine
import VineIE
52 from .worldstarhiphop
import WorldStarHipHopIE
53 from .xhamster
import XHamsterIE
54 from .xnxx
import XNXXIE
55 from .xvideos
import XVideosIE
56 from .yahoo
import YahooIE
, YahooSearchIE
57 from .youjizz
import YouJizzIE
58 from .youku
import YoukuIE
59 from .youporn
import YouPornIE
60 from .youtube
import YoutubeIE
, YoutubePlaylistIE
, YoutubeSearchIE
, YoutubeUserIE
, YoutubeChannelIE
61 from .zdf
import ZDFIE
65 """ Return a list of an instance of every supported extractor.
66 The order does matter; the first extractor matched is the one handling the URL.
94 StanfordOpenClassroomIE(),
138 def get_info_extractor(ie_name
):
139 """Returns the info extractor class with the given ie_name"""
140 return globals()[ie_name
+'IE']