extractors.py 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161
  1. # flake8: noqa
  2. from __future__ import unicode_literals
  3. from .abc import (
  4. ABCIE,
  5. ABCIViewIE,
  6. )
  7. from .abcnews import (
  8. AbcNewsIE,
  9. AbcNewsVideoIE,
  10. )
  11. from .abcotvs import (
  12. ABCOTVSIE,
  13. ABCOTVSClipsIE,
  14. )
  15. from .academicearth import AcademicEarthCourseIE
  16. from .acast import (
  17. ACastIE,
  18. ACastChannelIE,
  19. )
  20. from .addanime import AddAnimeIE
  21. from .adobetv import (
  22. AdobeTVIE,
  23. AdobeTVShowIE,
  24. AdobeTVChannelIE,
  25. AdobeTVVideoIE,
  26. )
  27. from .adultswim import AdultSwimIE
  28. from .aenetworks import (
  29. AENetworksIE,
  30. HistoryTopicIE,
  31. )
  32. from .afreecatv import AfreecaTVIE
  33. from .aftonbladet import AftonbladetIE
  34. from .airmozilla import AirMozillaIE
  35. from .aljazeera import AlJazeeraIE
  36. from .alphaporno import AlphaPornoIE
  37. from .amcnetworks import AMCNetworksIE
  38. from .animeondemand import AnimeOnDemandIE
  39. from .anitube import AnitubeIE
  40. from .anysex import AnySexIE
  41. from .aol import (
  42. AolIE,
  43. AolFeaturesIE,
  44. )
  45. from .allocine import AllocineIE
  46. from .aparat import AparatIE
  47. from .appleconnect import AppleConnectIE
  48. from .appletrailers import (
  49. AppleTrailersIE,
  50. AppleTrailersSectionIE,
  51. )
  52. from .archiveorg import ArchiveOrgIE
  53. from .arkena import ArkenaIE
  54. from .ard import (
  55. ARDIE,
  56. ARDMediathekIE,
  57. )
  58. from .arte import (
  59. ArteTvIE,
  60. ArteTVPlus7IE,
  61. ArteTVCreativeIE,
  62. ArteTVConcertIE,
  63. ArteTVInfoIE,
  64. ArteTVFutureIE,
  65. ArteTVCinemaIE,
  66. ArteTVDDCIE,
  67. ArteTVMagazineIE,
  68. ArteTVEmbedIE,
  69. ArteTVPlaylistIE,
  70. )
  71. from .atresplayer import AtresPlayerIE
  72. from .atttechchannel import ATTTechChannelIE
  73. from .audimedia import AudiMediaIE
  74. from .audioboom import AudioBoomIE
  75. from .audiomack import AudiomackIE, AudiomackAlbumIE
  76. from .awaan import (
  77. AWAANIE,
  78. AWAANVideoIE,
  79. AWAANLiveIE,
  80. AWAANSeasonIE,
  81. )
  82. from .azubu import AzubuIE, AzubuLiveIE
  83. from .baidu import BaiduVideoIE
  84. from .bambuser import BambuserIE, BambuserChannelIE
  85. from .bandcamp import BandcampIE, BandcampAlbumIE
  86. from .bbc import (
  87. BBCCoUkIE,
  88. BBCCoUkArticleIE,
  89. BBCCoUkIPlayerPlaylistIE,
  90. BBCCoUkPlaylistIE,
  91. BBCIE,
  92. )
  93. from .beeg import BeegIE
  94. from .behindkink import BehindKinkIE
  95. from .bellmedia import BellMediaIE
  96. from .beatportpro import BeatportProIE
  97. from .bet import BetIE
  98. from .bigflix import BigflixIE
  99. from .bild import BildIE
  100. from .bilibili import BiliBiliIE
  101. from .biobiochiletv import BioBioChileTVIE
  102. from .biqle import BIQLEIE
  103. from .bleacherreport import (
  104. BleacherReportIE,
  105. BleacherReportCMSIE,
  106. )
  107. from .blinkx import BlinkxIE
  108. from .bloomberg import BloombergIE
  109. from .bokecc import BokeCCIE
  110. from .bpb import BpbIE
  111. from .br import BRIE
  112. from .bravotv import BravoTVIE
  113. from .breakcom import BreakIE
  114. from .brightcove import (
  115. BrightcoveLegacyIE,
  116. BrightcoveNewIE,
  117. )
  118. from .buzzfeed import BuzzFeedIE
  119. from .byutv import BYUtvIE
  120. from .c56 import C56IE
  121. from .camdemy import (
  122. CamdemyIE,
  123. CamdemyFolderIE
  124. )
  125. from .camwithher import CamWithHerIE
  126. from .canalplus import CanalplusIE
  127. from .canalc2 import Canalc2IE
  128. from .canvas import CanvasIE
  129. from .carambatv import (
  130. CarambaTVIE,
  131. CarambaTVPageIE,
  132. )
  133. from .cartoonnetwork import CartoonNetworkIE
  134. from .cbc import (
  135. CBCIE,
  136. CBCPlayerIE,
  137. CBCWatchVideoIE,
  138. CBCWatchIE,
  139. )
  140. from .cbs import CBSIE
  141. from .cbslocal import CBSLocalIE
  142. from .cbsinteractive import CBSInteractiveIE
  143. from .cbsnews import (
  144. CBSNewsIE,
  145. CBSNewsLiveVideoIE,
  146. )
  147. from .cbssports import CBSSportsIE
  148. from .ccc import CCCIE
  149. from .cctv import CCTVIE
  150. from .cda import CDAIE
  151. from .ceskatelevize import CeskaTelevizeIE
  152. from .channel9 import Channel9IE
  153. from .charlierose import CharlieRoseIE
  154. from .chaturbate import ChaturbateIE
  155. from .chilloutzone import ChilloutzoneIE
  156. from .chirbit import (
  157. ChirbitIE,
  158. ChirbitProfileIE,
  159. )
  160. from .cinchcast import CinchcastIE
  161. from .clipfish import ClipfishIE
  162. from .cliphunter import CliphunterIE
  163. from .cliprs import ClipRsIE
  164. from .clipsyndicate import ClipsyndicateIE
  165. from .closertotruth import CloserToTruthIE
  166. from .cloudy import CloudyIE
  167. from .clubic import ClubicIE
  168. from .clyp import ClypIE
  169. from .cmt import CMTIE
  170. from .cnbc import CNBCIE
  171. from .cnn import (
  172. CNNIE,
  173. CNNBlogsIE,
  174. CNNArticleIE,
  175. )
  176. from .coub import CoubIE
  177. from .collegerama import CollegeRamaIE
  178. from .comedycentral import (
  179. ComedyCentralIE,
  180. ComedyCentralShortnameIE,
  181. ComedyCentralTVIE,
  182. ToshIE,
  183. )
  184. from .comcarcoff import ComCarCoffIE
  185. from .commonmistakes import CommonMistakesIE, UnicodeBOMIE
  186. from .commonprotocols import RtmpIE
  187. from .condenast import CondeNastIE
  188. from .cracked import CrackedIE
  189. from .crackle import CrackleIE
  190. from .criterion import CriterionIE
  191. from .crooksandliars import CrooksAndLiarsIE
  192. from .crunchyroll import (
  193. CrunchyrollIE,
  194. CrunchyrollShowPlaylistIE
  195. )
  196. from .cspan import CSpanIE
  197. from .ctsnews import CtsNewsIE
  198. from .ctvnews import CTVNewsIE
  199. from .cultureunplugged import CultureUnpluggedIE
  200. from .curiositystream import (
  201. CuriosityStreamIE,
  202. CuriosityStreamCollectionIE,
  203. )
  204. from .cwtv import CWTVIE
  205. from .dailymail import DailyMailIE
  206. from .dailymotion import (
  207. DailymotionIE,
  208. DailymotionPlaylistIE,
  209. DailymotionUserIE,
  210. DailymotionCloudIE,
  211. )
  212. from .daum import (
  213. DaumIE,
  214. DaumClipIE,
  215. DaumPlaylistIE,
  216. DaumUserIE,
  217. )
  218. from .dbtv import DBTVIE
  219. from .dctp import DctpTvIE
  220. from .deezer import DeezerPlaylistIE
  221. from .democracynow import DemocracynowIE
  222. from .dfb import DFBIE
  223. from .dhm import DHMIE
  224. from .dotsub import DotsubIE
  225. from .douyutv import DouyuTVIE
  226. from .dplay import DPlayIE
  227. from .dramafever import (
  228. DramaFeverIE,
  229. DramaFeverSeriesIE,
  230. )
  231. from .dreisat import DreiSatIE
  232. from .drbonanza import DRBonanzaIE
  233. from .drtuber import DrTuberIE
  234. from .drtv import DRTVIE
  235. from .dvtv import DVTVIE
  236. from .dumpert import DumpertIE
  237. from .defense import DefenseGouvFrIE
  238. from .discovery import DiscoveryIE
  239. from .discoverygo import DiscoveryGoIE
  240. from .dispeak import DigitallySpeakingIE
  241. from .dropbox import DropboxIE
  242. from .dw import (
  243. DWIE,
  244. DWArticleIE,
  245. )
  246. from .eagleplatform import EaglePlatformIE
  247. from .ebaumsworld import EbaumsWorldIE
  248. from .echomsk import EchoMskIE
  249. from .ehow import EHowIE
  250. from .eighttracks import EightTracksIE
  251. from .einthusan import EinthusanIE
  252. from .eitb import EitbIE
  253. from .ellentv import (
  254. EllenTVIE,
  255. EllenTVClipsIE,
  256. )
  257. from .elpais import ElPaisIE
  258. from .embedly import EmbedlyIE
  259. from .engadget import EngadgetIE
  260. from .eporner import EpornerIE
  261. from .eroprofile import EroProfileIE
  262. from .escapist import EscapistIE
  263. from .espn import ESPNIE
  264. from .esri import EsriVideoIE
  265. from .europa import EuropaIE
  266. from .everyonesmixtape import EveryonesMixtapeIE
  267. from .expotv import ExpoTVIE
  268. from .extremetube import ExtremeTubeIE
  269. from .eyedotv import EyedoTVIE
  270. from .facebook import (
  271. FacebookIE,
  272. FacebookPluginsVideoIE,
  273. )
  274. from .faz import FazIE
  275. from .fc2 import (
  276. FC2IE,
  277. FC2EmbedIE,
  278. )
  279. from .fczenit import FczenitIE
  280. from .firstpost import FirstpostIE
  281. from .firsttv import FirstTVIE
  282. from .fivemin import FiveMinIE
  283. from .fivetv import FiveTVIE
  284. from .fktv import FKTVIE
  285. from .flickr import FlickrIE
  286. from .flipagram import FlipagramIE
  287. from .folketinget import FolketingetIE
  288. from .footyroom import FootyRoomIE
  289. from .formula1 import Formula1IE
  290. from .fourtube import FourTubeIE
  291. from .fox import FOXIE
  292. from .foxgay import FoxgayIE
  293. from .foxnews import (
  294. FoxNewsIE,
  295. FoxNewsArticleIE,
  296. FoxNewsInsiderIE,
  297. )
  298. from .foxsports import FoxSportsIE
  299. from .franceculture import FranceCultureIE
  300. from .franceinter import FranceInterIE
  301. from .francetv import (
  302. PluzzIE,
  303. FranceTvInfoIE,
  304. FranceTVIE,
  305. GenerationQuoiIE,
  306. CultureboxIE,
  307. )
  308. from .freesound import FreesoundIE
  309. from .freespeech import FreespeechIE
  310. from .freevideo import FreeVideoIE
  311. from .funimation import FunimationIE
  312. from .funnyordie import FunnyOrDieIE
  313. from .fusion import FusionIE
  314. from .fxnetworks import FXNetworksIE
  315. from .gameinformer import GameInformerIE
  316. from .gameone import (
  317. GameOneIE,
  318. GameOnePlaylistIE,
  319. )
  320. from .gamersyde import GamersydeIE
  321. from .gamespot import GameSpotIE
  322. from .gamestar import GameStarIE
  323. from .gazeta import GazetaIE
  324. from .gdcvault import GDCVaultIE
  325. from .generic import GenericIE
  326. from .gfycat import GfycatIE
  327. from .giantbomb import GiantBombIE
  328. from .giga import GigaIE
  329. from .glide import GlideIE
  330. from .globo import (
  331. GloboIE,
  332. GloboArticleIE,
  333. )
  334. from .go import GoIE
  335. from .godtube import GodTubeIE
  336. from .godtv import GodTVIE
  337. from .golem import GolemIE
  338. from .googledrive import GoogleDriveIE
  339. from .googleplus import GooglePlusIE
  340. from .googlesearch import GoogleSearchIE
  341. from .goshgay import GoshgayIE
  342. from .gputechconf import GPUTechConfIE
  343. from .groupon import GrouponIE
  344. from .hark import HarkIE
  345. from .hbo import HBOIE
  346. from .hearthisat import HearThisAtIE
  347. from .heise import HeiseIE
  348. from .hellporno import HellPornoIE
  349. from .helsinki import HelsinkiIE
  350. from .hentaistigma import HentaiStigmaIE
  351. from .hgtv import (
  352. HGTVIE,
  353. HGTVComShowIE,
  354. )
  355. from .historicfilms import HistoricFilmsIE
  356. from .hitbox import HitboxIE, HitboxLiveIE
  357. from .hornbunny import HornBunnyIE
  358. from .hotnewhiphop import HotNewHipHopIE
  359. from .hotstar import HotStarIE
  360. from .howcast import HowcastIE
  361. from .howstuffworks import HowStuffWorksIE
  362. from .hrti import (
  363. HRTiIE,
  364. HRTiPlaylistIE,
  365. )
  366. from .huffpost import HuffPostIE
  367. from .hypem import HypemIE
  368. from .iconosquare import IconosquareIE
  369. from .ign import (
  370. IGNIE,
  371. OneUPIE,
  372. PCMagIE,
  373. )
  374. from .imdb import (
  375. ImdbIE,
  376. ImdbListIE
  377. )
  378. from .imgur import (
  379. ImgurIE,
  380. ImgurAlbumIE,
  381. )
  382. from .ina import InaIE
  383. from .indavideo import (
  384. IndavideoIE,
  385. IndavideoEmbedIE,
  386. )
  387. from .infoq import InfoQIE
  388. from .instagram import InstagramIE, InstagramUserIE
  389. from .internetvideoarchive import InternetVideoArchiveIE
  390. from .iprima import IPrimaIE
  391. from .iqiyi import IqiyiIE
  392. from .ir90tv import Ir90TvIE
  393. from .ivi import (
  394. IviIE,
  395. IviCompilationIE
  396. )
  397. from .ivideon import IvideonIE
  398. from .iwara import IwaraIE
  399. from .izlesene import IzleseneIE
  400. from .jeuxvideo import JeuxVideoIE
  401. from .jove import JoveIE
  402. from .jwplatform import JWPlatformIE
  403. from .jpopsukitv import JpopsukiIE
  404. from .kaltura import KalturaIE
  405. from .kamcord import KamcordIE
  406. from .kanalplay import KanalPlayIE
  407. from .kankan import KankanIE
  408. from .karaoketv import KaraoketvIE
  409. from .karrierevideos import KarriereVideosIE
  410. from .keezmovies import KeezMoviesIE
  411. from .ketnet import KetnetIE
  412. from .khanacademy import KhanAcademyIE
  413. from .kickstarter import KickStarterIE
  414. from .keek import KeekIE
  415. from .konserthusetplay import KonserthusetPlayIE
  416. from .kontrtube import KontrTubeIE
  417. from .krasview import KrasViewIE
  418. from .ku6 import Ku6IE
  419. from .kusi import KUSIIE
  420. from .kuwo import (
  421. KuwoIE,
  422. KuwoAlbumIE,
  423. KuwoChartIE,
  424. KuwoSingerIE,
  425. KuwoCategoryIE,
  426. KuwoMvIE,
  427. )
  428. from .la7 import LA7IE
  429. from .laola1tv import Laola1TvIE
  430. from .lci import LCIIE
  431. from .lcp import (
  432. LcpPlayIE,
  433. LcpIE,
  434. )
  435. from .learnr import LearnrIE
  436. from .lecture2go import Lecture2GoIE
  437. from .lemonde import LemondeIE
  438. from .leeco import (
  439. LeIE,
  440. LePlaylistIE,
  441. LetvCloudIE,
  442. )
  443. from .libraryofcongress import LibraryOfCongressIE
  444. from .libsyn import LibsynIE
  445. from .lifenews import (
  446. LifeNewsIE,
  447. LifeEmbedIE,
  448. )
  449. from .limelight import (
  450. LimelightMediaIE,
  451. LimelightChannelIE,
  452. LimelightChannelListIE,
  453. )
  454. from .litv import LiTVIE
  455. from .liveleak import LiveLeakIE
  456. from .livestream import (
  457. LivestreamIE,
  458. LivestreamOriginalIE,
  459. LivestreamShortenerIE,
  460. )
  461. from .lnkgo import LnkGoIE
  462. from .localnews8 import LocalNews8IE
  463. from .lovehomeporn import LoveHomePornIE
  464. from .lrt import LRTIE
  465. from .lynda import (
  466. LyndaIE,
  467. LyndaCourseIE
  468. )
  469. from .m6 import M6IE
  470. from .macgamestore import MacGameStoreIE
  471. from .mailru import MailRuIE
  472. from .makerschannel import MakersChannelIE
  473. from .makertv import MakerTVIE
  474. from .mangomolo import (
  475. MangomoloVideoIE,
  476. MangomoloLiveIE,
  477. )
  478. from .matchtv import MatchTVIE
  479. from .mdr import MDRIE
  480. from .meta import METAIE
  481. from .metacafe import MetacafeIE
  482. from .metacritic import MetacriticIE
  483. from .mgoon import MgoonIE
  484. from .mgtv import MGTVIE
  485. from .miaopai import MiaoPaiIE
  486. from .microsoftvirtualacademy import (
  487. MicrosoftVirtualAcademyIE,
  488. MicrosoftVirtualAcademyCourseIE,
  489. )
  490. from .minhateca import MinhatecaIE
  491. from .ministrygrid import MinistryGridIE
  492. from .minoto import MinotoIE
  493. from .miomio import MioMioIE
  494. from .mit import TechTVMITIE, MITIE, OCWMITIE
  495. from .mitele import MiTeleIE
  496. from .mixcloud import (
  497. MixcloudIE,
  498. MixcloudUserIE,
  499. MixcloudPlaylistIE,
  500. MixcloudStreamIE,
  501. )
  502. from .mlb import MLBIE
  503. from .mnet import MnetIE
  504. from .mpora import MporaIE
  505. from .moevideo import MoeVideoIE
  506. from .mofosex import MofosexIE
  507. from .mojvideo import MojvideoIE
  508. from .moniker import MonikerIE
  509. from .morningstar import MorningstarIE
  510. from .motherless import MotherlessIE
  511. from .motorsport import MotorsportIE
  512. from .movieclips import MovieClipsIE
  513. from .moviezine import MoviezineIE
  514. from .movingimage import MovingImageIE
  515. from .msn import MSNIE
  516. from .mtv import (
  517. MTVIE,
  518. MTVVideoIE,
  519. MTVServicesEmbeddedIE,
  520. MTVDEIE,
  521. )
  522. from .muenchentv import MuenchenTVIE
  523. from .musicplayon import MusicPlayOnIE
  524. from .mwave import MwaveIE, MwaveMeetGreetIE
  525. from .myspace import MySpaceIE, MySpaceAlbumIE
  526. from .myspass import MySpassIE
  527. from .myvi import MyviIE
  528. from .myvideo import MyVideoIE
  529. from .myvidster import MyVidsterIE
  530. from .nationalgeographic import (
  531. NationalGeographicVideoIE,
  532. NationalGeographicIE,
  533. NationalGeographicEpisodeGuideIE,
  534. )
  535. from .naver import NaverIE
  536. from .nba import NBAIE
  537. from .nbc import (
  538. CSNNEIE,
  539. NBCIE,
  540. NBCNewsIE,
  541. NBCOlympicsIE,
  542. NBCSportsIE,
  543. NBCSportsVPlayerIE,
  544. )
  545. from .ndr import (
  546. NDRIE,
  547. NJoyIE,
  548. NDREmbedBaseIE,
  549. NDREmbedIE,
  550. NJoyEmbedIE,
  551. )
  552. from .ndtv import NDTVIE
  553. from .netzkino import NetzkinoIE
  554. from .nerdcubed import NerdCubedFeedIE
  555. from .neteasemusic import (
  556. NetEaseMusicIE,
  557. NetEaseMusicAlbumIE,
  558. NetEaseMusicSingerIE,
  559. NetEaseMusicListIE,
  560. NetEaseMusicMvIE,
  561. NetEaseMusicProgramIE,
  562. NetEaseMusicDjRadioIE,
  563. )
  564. from .newgrounds import NewgroundsIE
  565. from .newstube import NewstubeIE
  566. from .nextmedia import (
  567. NextMediaIE,
  568. NextMediaActionNewsIE,
  569. AppleDailyIE,
  570. )
  571. from .nfb import NFBIE
  572. from .nfl import NFLIE
  573. from .nhk import NhkVodIE
  574. from .nhl import (
  575. NHLVideocenterIE,
  576. NHLNewsIE,
  577. NHLVideocenterCategoryIE,
  578. NHLIE,
  579. )
  580. from .nick import (
  581. NickIE,
  582. NickDeIE,
  583. )
  584. from .niconico import NiconicoIE, NiconicoPlaylistIE
  585. from .ninecninemedia import (
  586. NineCNineMediaStackIE,
  587. NineCNineMediaIE,
  588. )
  589. from .ninegag import NineGagIE
  590. from .ninenow import NineNowIE
  591. from .nintendo import NintendoIE
  592. from .noco import NocoIE
  593. from .normalboots import NormalbootsIE
  594. from .nosvideo import NosVideoIE
  595. from .nova import NovaIE
  596. from .novamov import (
  597. AuroraVidIE,
  598. CloudTimeIE,
  599. NowVideoIE,
  600. VideoWeedIE,
  601. WholeCloudIE,
  602. )
  603. from .nowness import (
  604. NownessIE,
  605. NownessPlaylistIE,
  606. NownessSeriesIE,
  607. )
  608. from .nowtv import (
  609. NowTVIE,
  610. NowTVListIE,
  611. )
  612. from .noz import NozIE
  613. from .npo import (
  614. AndereTijdenIE,
  615. NPOIE,
  616. NPOLiveIE,
  617. NPORadioIE,
  618. NPORadioFragmentIE,
  619. SchoolTVIE,
  620. VPROIE,
  621. WNLIE,
  622. )
  623. from .npr import NprIE
  624. from .nrk import (
  625. NRKIE,
  626. NRKPlaylistIE,
  627. NRKSkoleIE,
  628. NRKTVIE,
  629. )
  630. from .ntvde import NTVDeIE
  631. from .ntvru import NTVRuIE
  632. from .nytimes import (
  633. NYTimesIE,
  634. NYTimesArticleIE,
  635. )
  636. from .nuvid import NuvidIE
  637. from .odatv import OdaTVIE
  638. from .odnoklassniki import OdnoklassnikiIE
  639. from .oktoberfesttv import OktoberfestTVIE
  640. from .onet import (
  641. OnetIE,
  642. OnetChannelIE,
  643. )
  644. from .onionstudios import OnionStudiosIE
  645. from .ooyala import (
  646. OoyalaIE,
  647. OoyalaExternalIE,
  648. )
  649. from .openload import OpenloadIE
  650. from .ora import OraTVIE
  651. from .orf import (
  652. ORFTVthekIE,
  653. ORFOE1IE,
  654. ORFFM4IE,
  655. ORFIPTVIE,
  656. )
  657. from .pandoratv import PandoraTVIE
  658. from .parliamentliveuk import ParliamentLiveUKIE
  659. from .patreon import PatreonIE
  660. from .pbs import PBSIE
  661. from .people import PeopleIE
  662. from .periscope import (
  663. PeriscopeIE,
  664. PeriscopeUserIE,
  665. )
  666. from .philharmoniedeparis import PhilharmonieDeParisIE
  667. from .phoenix import PhoenixIE
  668. from .photobucket import PhotobucketIE
  669. from .pinkbike import PinkbikeIE
  670. from .pladform import PladformIE
  671. from .playfm import PlayFMIE
  672. from .plays import PlaysTVIE
  673. from .playtvak import PlaytvakIE
  674. from .playvid import PlayvidIE
  675. from .playwire import PlaywireIE
  676. from .pluralsight import (
  677. PluralsightIE,
  678. PluralsightCourseIE,
  679. )
  680. from .podomatic import PodomaticIE
  681. from .pokemon import PokemonIE
  682. from .polskieradio import (
  683. PolskieRadioIE,
  684. PolskieRadioCategoryIE,
  685. )
  686. from .porn91 import Porn91IE
  687. from .porncom import PornComIE
  688. from .pornhd import PornHdIE
  689. from .pornhub import (
  690. PornHubIE,
  691. PornHubPlaylistIE,
  692. PornHubUserVideosIE,
  693. )
  694. from .pornotube import PornotubeIE
  695. from .pornovoisines import PornoVoisinesIE
  696. from .pornoxo import PornoXOIE
  697. from .presstv import PressTVIE
  698. from .primesharetv import PrimeShareTVIE
  699. from .promptfile import PromptFileIE
  700. from .prosiebensat1 import ProSiebenSat1IE
  701. from .puls4 import Puls4IE
  702. from .pyvideo import PyvideoIE
  703. from .qqmusic import (
  704. QQMusicIE,
  705. QQMusicSingerIE,
  706. QQMusicAlbumIE,
  707. QQMusicToplistIE,
  708. QQMusicPlaylistIE,
  709. )
  710. from .r7 import (
  711. R7IE,
  712. R7ArticleIE,
  713. )
  714. from .radiocanada import (
  715. RadioCanadaIE,
  716. RadioCanadaAudioVideoIE,
  717. )
  718. from .radiode import RadioDeIE
  719. from .radiojavan import RadioJavanIE
  720. from .radiobremen import RadioBremenIE
  721. from .radiofrance import RadioFranceIE
  722. from .rai import (
  723. RaiTVIE,
  724. RaiIE,
  725. )
  726. from .rbmaradio import RBMARadioIE
  727. from .rds import RDSIE
  728. from .redtube import RedTubeIE
  729. from .regiotv import RegioTVIE
  730. from .restudy import RestudyIE
  731. from .reuters import ReutersIE
  732. from .reverbnation import ReverbNationIE
  733. from .revision3 import (
  734. Revision3EmbedIE,
  735. Revision3IE,
  736. )
  737. from .rice import RICEIE
  738. from .ringtv import RingTVIE
  739. from .rmcdecouverte import RMCDecouverteIE
  740. from .ro220 import Ro220IE
  741. from .rockstargames import RockstarGamesIE
  742. from .roosterteeth import RoosterTeethIE
  743. from .rottentomatoes import RottenTomatoesIE
  744. from .roxwel import RoxwelIE
  745. from .rozhlas import RozhlasIE
  746. from .rtbf import RTBFIE
  747. from .rte import RteIE, RteRadioIE
  748. from .rtlnl import RtlNlIE
  749. from .rtl2 import RTL2IE
  750. from .rtp import RTPIE
  751. from .rts import RTSIE
  752. from .rtve import RTVEALaCartaIE, RTVELiveIE, RTVEInfantilIE, RTVELiveIE, RTVETelevisionIE
  753. from .rtvnh import RTVNHIE
  754. from .rudo import RudoIE
  755. from .ruhd import RUHDIE
  756. from .ruleporn import RulePornIE
  757. from .rutube import (
  758. RutubeIE,
  759. RutubeChannelIE,
  760. RutubeEmbedIE,
  761. RutubeMovieIE,
  762. RutubePersonIE,
  763. )
  764. from .rutv import RUTVIE
  765. from .ruutu import RuutuIE
  766. from .sandia import SandiaIE
  767. from .safari import (
  768. SafariIE,
  769. SafariApiIE,
  770. SafariCourseIE,
  771. )
  772. from .sapo import SapoIE
  773. from .savefrom import SaveFromIE
  774. from .sbs import SBSIE
  775. from .scivee import SciVeeIE
  776. from .screencast import ScreencastIE
  777. from .screencastomatic import ScreencastOMaticIE
  778. from .screenjunkies import ScreenJunkiesIE
  779. from .screenwavemedia import ScreenwaveMediaIE, TeamFourIE
  780. from .seeker import SeekerIE
  781. from .senateisvp import SenateISVPIE
  782. from .sendtonews import SendtoNewsIE
  783. from .servingsys import ServingSysIE
  784. from .sexu import SexuIE
  785. from .shahid import ShahidIE
  786. from .shared import SharedIE
  787. from .sharesix import ShareSixIE
  788. from .sina import SinaIE
  789. from .sixplay import SixPlayIE
  790. from .skynewsarabia import (
  791. SkyNewsArabiaIE,
  792. SkyNewsArabiaArticleIE,
  793. )
  794. from .skysports import SkySportsIE
  795. from .slideshare import SlideshareIE
  796. from .slutload import SlutloadIE
  797. from .smotri import (
  798. SmotriIE,
  799. SmotriCommunityIE,
  800. SmotriUserIE,
  801. SmotriBroadcastIE,
  802. )
  803. from .snotr import SnotrIE
  804. from .sohu import SohuIE
  805. from .sonyliv import SonyLIVIE
  806. from .soundcloud import (
  807. SoundcloudIE,
  808. SoundcloudSetIE,
  809. SoundcloudUserIE,
  810. SoundcloudPlaylistIE,
  811. SoundcloudSearchIE
  812. )
  813. from .soundgasm import (
  814. SoundgasmIE,
  815. SoundgasmProfileIE
  816. )
  817. from .southpark import (
  818. SouthParkIE,
  819. SouthParkDeIE,
  820. SouthParkDkIE,
  821. SouthParkEsIE,
  822. SouthParkNlIE
  823. )
  824. from .spankbang import SpankBangIE
  825. from .spankwire import SpankwireIE
  826. from .spiegel import SpiegelIE, SpiegelArticleIE
  827. from .spiegeltv import SpiegeltvIE
  828. from .spike import SpikeIE
  829. from .stitcher import StitcherIE
  830. from .sport5 import Sport5IE
  831. from .sportbox import (
  832. SportBoxIE,
  833. SportBoxEmbedIE,
  834. )
  835. from .sportdeutschland import SportDeutschlandIE
  836. from .sportschau import SportschauIE
  837. from .srgssr import (
  838. SRGSSRIE,
  839. SRGSSRPlayIE,
  840. )
  841. from .srmediathek import SRMediathekIE
  842. from .stanfordoc import StanfordOpenClassroomIE
  843. from .steam import SteamIE
  844. from .streamable import StreamableIE
  845. from .streamcloud import StreamcloudIE
  846. from .streamcz import StreamCZIE
  847. from .streetvoice import StreetVoiceIE
  848. from .sunporno import SunPornoIE
  849. from .svt import (
  850. SVTIE,
  851. SVTPlayIE,
  852. )
  853. from .swrmediathek import SWRMediathekIE
  854. from .syfy import SyfyIE
  855. from .sztvhu import SztvHuIE
  856. from .tagesschau import (
  857. TagesschauPlayerIE,
  858. TagesschauIE,
  859. )
  860. from .tass import TassIE
  861. from .tbs import TBSIE
  862. from .tdslifeway import TDSLifewayIE
  863. from .teachertube import (
  864. TeacherTubeIE,
  865. TeacherTubeUserIE,
  866. )
  867. from .teachingchannel import TeachingChannelIE
  868. from .teamcoco import TeamcocoIE
  869. from .techtalks import TechTalksIE
  870. from .ted import TEDIE
  871. from .tele13 import Tele13IE
  872. from .telebruxelles import TeleBruxellesIE
  873. from .telecinco import TelecincoIE
  874. from .telegraaf import TelegraafIE
  875. from .telemb import TeleMBIE
  876. from .telequebec import TeleQuebecIE
  877. from .teletask import TeleTaskIE
  878. from .telewebion import TelewebionIE
  879. from .testurl import TestURLIE
  880. from .tf1 import TF1IE
  881. from .tfo import TFOIE
  882. from .theintercept import TheInterceptIE
  883. from .theplatform import (
  884. ThePlatformIE,
  885. ThePlatformFeedIE,
  886. )
  887. from .thescene import TheSceneIE
  888. from .thesixtyone import TheSixtyOneIE
  889. from .thestar import TheStarIE
  890. from .thisamericanlife import ThisAmericanLifeIE
  891. from .thisav import ThisAVIE
  892. from .threeqsdn import ThreeQSDNIE
  893. from .tinypic import TinyPicIE
  894. from .tlc import TlcDeIE
  895. from .tmz import (
  896. TMZIE,
  897. TMZArticleIE,
  898. )
  899. from .tnaflix import (
  900. TNAFlixNetworkEmbedIE,
  901. TNAFlixIE,
  902. EMPFlixIE,
  903. MovieFapIE,
  904. )
  905. from .toggle import ToggleIE
  906. from .toutv import TouTvIE
  907. from .toypics import ToypicsUserIE, ToypicsIE
  908. from .traileraddict import TrailerAddictIE
  909. from .trilulilu import TriluliluIE
  910. from .trutv import TruTVIE
  911. from .tube8 import Tube8IE
  912. from .tubitv import TubiTvIE
  913. from .tudou import (
  914. TudouIE,
  915. TudouPlaylistIE,
  916. TudouAlbumIE,
  917. )
  918. from .tumblr import TumblrIE
  919. from .tunein import (
  920. TuneInClipIE,
  921. TuneInStationIE,
  922. TuneInProgramIE,
  923. TuneInTopicIE,
  924. TuneInShortenerIE,
  925. )
  926. from .turbo import TurboIE
  927. from .tutv import TutvIE
  928. from .tv2 import (
  929. TV2IE,
  930. TV2ArticleIE,
  931. )
  932. from .tv3 import TV3IE
  933. from .tv4 import TV4IE
  934. from .tvc import (
  935. TVCIE,
  936. TVCArticleIE,
  937. )
  938. from .tvigle import TvigleIE
  939. from .tvland import TVLandIE
  940. from .tvnoe import TVNoeIE
  941. from .tvp import (
  942. TVPEmbedIE,
  943. TVPIE,
  944. TVPSeriesIE,
  945. )
  946. from .tvplay import (
  947. TVPlayIE,
  948. ViafreeIE,
  949. )
  950. from .tweakers import TweakersIE
  951. from .twentyfourvideo import TwentyFourVideoIE
  952. from .twentymin import TwentyMinutenIE
  953. from .twentytwotracks import (
  954. TwentyTwoTracksIE,
  955. TwentyTwoTracksGenreIE
  956. )
  957. from .twitch import (
  958. TwitchVideoIE,
  959. TwitchChapterIE,
  960. TwitchVodIE,
  961. TwitchProfileIE,
  962. TwitchPastBroadcastsIE,
  963. TwitchStreamIE,
  964. TwitchClipsIE,
  965. )
  966. from .twitter import (
  967. TwitterCardIE,
  968. TwitterIE,
  969. TwitterAmplifyIE,
  970. )
  971. from .udemy import (
  972. UdemyIE,
  973. UdemyCourseIE
  974. )
  975. from .udn import UDNEmbedIE
  976. from .digiteka import DigitekaIE
  977. from .unistra import UnistraIE
  978. from .uol import UOLIE
  979. from .uplynk import (
  980. UplynkIE,
  981. UplynkPreplayIE,
  982. )
  983. from .urort import UrortIE
  984. from .urplay import URPlayIE
  985. from .usanetwork import USANetworkIE
  986. from .usatoday import USATodayIE
  987. from .ustream import UstreamIE, UstreamChannelIE
  988. from .ustudio import (
  989. UstudioIE,
  990. UstudioEmbedIE,
  991. )
  992. from .varzesh3 import Varzesh3IE
  993. from .vbox7 import Vbox7IE
  994. from .veehd import VeeHDIE
  995. from .veoh import VeohIE
  996. from .vessel import VesselIE
  997. from .vesti import VestiIE
  998. from .vevo import (
  999. VevoIE,
  1000. VevoPlaylistIE,
  1001. )
  1002. from .vgtv import (
  1003. BTArticleIE,
  1004. BTVestlendingenIE,
  1005. VGTVIE,
  1006. )
  1007. from .vh1 import VH1IE
  1008. from .vice import (
  1009. ViceIE,
  1010. ViceShowIE,
  1011. )
  1012. from .viceland import VicelandIE
  1013. from .vidbit import VidbitIE
  1014. from .viddler import ViddlerIE
  1015. from .videodetective import VideoDetectiveIE
  1016. from .videofyme import VideofyMeIE
  1017. from .videomega import VideoMegaIE
  1018. from .videomore import (
  1019. VideomoreIE,
  1020. VideomoreVideoIE,
  1021. VideomoreSeasonIE,
  1022. )
  1023. from .videopremium import VideoPremiumIE
  1024. from .videott import VideoTtIE
  1025. from .vidio import VidioIE
  1026. from .vidme import (
  1027. VidmeIE,
  1028. VidmeUserIE,
  1029. VidmeUserLikesIE,
  1030. )
  1031. from .vidzi import VidziIE
  1032. from .vier import VierIE, VierVideosIE
  1033. from .viewlift import (
  1034. ViewLiftIE,
  1035. ViewLiftEmbedIE,
  1036. )
  1037. from .viewster import ViewsterIE
  1038. from .viidea import ViideaIE
  1039. from .vimeo import (
  1040. VimeoIE,
  1041. VimeoAlbumIE,
  1042. VimeoChannelIE,
  1043. VimeoGroupsIE,
  1044. VimeoLikesIE,
  1045. VimeoOndemandIE,
  1046. VimeoReviewIE,
  1047. VimeoUserIE,
  1048. VimeoWatchLaterIE,
  1049. )
  1050. from .vimple import VimpleIE
  1051. from .vine import (
  1052. VineIE,
  1053. VineUserIE,
  1054. )
  1055. from .viki import (
  1056. VikiIE,
  1057. VikiChannelIE,
  1058. )
  1059. from .vk import (
  1060. VKIE,
  1061. VKUserVideosIE,
  1062. VKWallPostIE,
  1063. )
  1064. from .vlive import VLiveIE
  1065. from .vodlocker import VodlockerIE
  1066. from .vodplatform import VODPlatformIE
  1067. from .voicerepublic import VoiceRepublicIE
  1068. from .voxmedia import VoxMediaIE
  1069. from .vporn import VpornIE
  1070. from .vrt import VRTIE
  1071. from .vube import VubeIE
  1072. from .vuclip import VuClipIE
  1073. from .vyborymos import VyboryMosIE
  1074. from .walla import WallaIE
  1075. from .washingtonpost import (
  1076. WashingtonPostIE,
  1077. WashingtonPostArticleIE,
  1078. )
  1079. from .wat import WatIE
  1080. from .watchindianporn import WatchIndianPornIE
  1081. from .wdr import (
  1082. WDRIE,
  1083. WDRMobileIE,
  1084. )
  1085. from .webofstories import (
  1086. WebOfStoriesIE,
  1087. WebOfStoriesPlaylistIE,
  1088. )
  1089. from .weiqitv import WeiqiTVIE
  1090. from .wimp import WimpIE
  1091. from .wistia import WistiaIE
  1092. from .worldstarhiphop import WorldStarHipHopIE
  1093. from .wrzuta import (
  1094. WrzutaIE,
  1095. WrzutaPlaylistIE,
  1096. )
  1097. from .wsj import WSJIE
  1098. from .xbef import XBefIE
  1099. from .xboxclips import XboxClipsIE
  1100. from .xfileshare import XFileShareIE
  1101. from .xhamster import (
  1102. XHamsterIE,
  1103. XHamsterEmbedIE,
  1104. )
  1105. from .xiami import (
  1106. XiamiSongIE,
  1107. XiamiAlbumIE,
  1108. XiamiArtistIE,
  1109. XiamiCollectionIE
  1110. )
  1111. from .xminus import XMinusIE
  1112. from .xnxx import XNXXIE
  1113. from .xstream import XstreamIE
  1114. from .xtube import XTubeUserIE, XTubeIE
  1115. from .xuite import XuiteIE
  1116. from .xvideos import XVideosIE
  1117. from .xxxymovies import XXXYMoviesIE
  1118. from .yahoo import (
  1119. YahooIE,
  1120. YahooSearchIE,
  1121. )
  1122. from .yam import YamIE
  1123. from .yandexmusic import (
  1124. YandexMusicTrackIE,
  1125. YandexMusicAlbumIE,
  1126. YandexMusicPlaylistIE,
  1127. )
  1128. from .yesjapan import YesJapanIE
  1129. from .yinyuetai import YinYueTaiIE
  1130. from .ynet import YnetIE
  1131. from .youjizz import YouJizzIE
  1132. from .youku import (
  1133. YoukuIE,
  1134. YoukuShowIE,
  1135. )
  1136. from .youporn import YouPornIE
  1137. from .yourupload import YourUploadIE
  1138. from .youtube import (
  1139. YoutubeIE,
  1140. YoutubeChannelIE,
  1141. YoutubeFavouritesIE,
  1142. YoutubeHistoryIE,
  1143. YoutubeLiveIE,
  1144. YoutubePlaylistIE,
  1145. YoutubePlaylistsIE,
  1146. YoutubeRecommendedIE,
  1147. YoutubeSearchDateIE,
  1148. YoutubeSearchIE,
  1149. YoutubeSearchURLIE,
  1150. YoutubeSharedVideoIE,
  1151. YoutubeShowIE,
  1152. YoutubeSubscriptionsIE,
  1153. YoutubeTruncatedIDIE,
  1154. YoutubeTruncatedURLIE,
  1155. YoutubeUserIE,
  1156. YoutubeWatchLaterIE,
  1157. )
  1158. from .zapiks import ZapiksIE
  1159. from .zdf import ZDFIE, ZDFChannelIE
  1160. from .zingmp3 import ZingMp3IE