]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/__init__.py
b208f9002e9e9bb31771b12e6b96399859d1382f
3 from .arte
import ArteTvIE
4 from .bandcamp
import BandcampIE
5 from .bliptv
import BlipTVIE
, BlipTVUserIE
6 from .breakcom
import BreakIE
7 from .comedycentral
import ComedyCentralIE
8 from .collegehumor
import CollegeHumorIE
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 .justintv
import JustinTVIE
25 from .keek
import KeekIE
26 from .liveleak
import LiveLeakIE
27 from .metacafe
import MetacafeIE
28 from .mixcloud
import MixcloudIE
29 from .mtv
import MTVIE
30 from .myspass
import MySpassIE
31 from .myvideo
import MyVideoIE
32 from .nba
import NBAIE
33 from .statigram
import StatigramIE
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 .steam
import SteamIE
42 from .teamcoco
import TeamcocoIE
43 from .ted
import TEDIE
44 from .tumblr
import TumblrIE
45 from .ustream
import UstreamIE
46 from .vbox7
import Vbox7IE
47 from .vimeo
import VimeoIE
48 from .vine
import VineIE
49 from .worldstarhiphop
import WorldStarHipHopIE
50 from .xnxx
import XNXXIE
51 from .xhamster
import XHamsterIE
52 from .xvideos
import XVideosIE
53 from .yahoo
import YahooIE
, YahooSearchIE
54 from .youjizz
import YouJizzIE
55 from .youku
import YoukuIE
56 from .youporn
import YouPornIE
57 from .youtube
import YoutubeIE
, YoutubePlaylistIE
, YoutubeSearchIE
, YoutubeUserIE
, YoutubeChannelIE
58 from .zdf
import ZDFIE
61 """ Return a list of an instance of every supported extractor.
62 The order does matter; the first extractor matched is the one handling the URL.
90 StanfordOpenClassroomIE(),
131 def get_info_extractor(ie_name
):
132 """Returns the info extractor class with the given ie_name"""
133 return globals()[ie_name
+'IE']