extractors.py 27 KB

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