extractors.py 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160
  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. NPOIE,
  615. NPOLiveIE,
  616. NPORadioIE,
  617. NPORadioFragmentIE,
  618. SchoolTVIE,
  619. VPROIE,
  620. WNLIE
  621. )
  622. from .npr import NprIE
  623. from .nrk import (
  624. NRKIE,
  625. NRKPlaylistIE,
  626. NRKSkoleIE,
  627. NRKTVIE,
  628. )
  629. from .ntvde import NTVDeIE
  630. from .ntvru import NTVRuIE
  631. from .nytimes import (
  632. NYTimesIE,
  633. NYTimesArticleIE,
  634. )
  635. from .nuvid import NuvidIE
  636. from .odatv import OdaTVIE
  637. from .odnoklassniki import OdnoklassnikiIE
  638. from .oktoberfesttv import OktoberfestTVIE
  639. from .onet import (
  640. OnetIE,
  641. OnetChannelIE,
  642. )
  643. from .onionstudios import OnionStudiosIE
  644. from .ooyala import (
  645. OoyalaIE,
  646. OoyalaExternalIE,
  647. )
  648. from .openload import OpenloadIE
  649. from .ora import OraTVIE
  650. from .orf import (
  651. ORFTVthekIE,
  652. ORFOE1IE,
  653. ORFFM4IE,
  654. ORFIPTVIE,
  655. )
  656. from .pandoratv import PandoraTVIE
  657. from .parliamentliveuk import ParliamentLiveUKIE
  658. from .patreon import PatreonIE
  659. from .pbs import PBSIE
  660. from .people import PeopleIE
  661. from .periscope import (
  662. PeriscopeIE,
  663. PeriscopeUserIE,
  664. )
  665. from .philharmoniedeparis import PhilharmonieDeParisIE
  666. from .phoenix import PhoenixIE
  667. from .photobucket import PhotobucketIE
  668. from .pinkbike import PinkbikeIE
  669. from .pladform import PladformIE
  670. from .playfm import PlayFMIE
  671. from .plays import PlaysTVIE
  672. from .playtvak import PlaytvakIE
  673. from .playvid import PlayvidIE
  674. from .playwire import PlaywireIE
  675. from .pluralsight import (
  676. PluralsightIE,
  677. PluralsightCourseIE,
  678. )
  679. from .podomatic import PodomaticIE
  680. from .pokemon import PokemonIE
  681. from .polskieradio import (
  682. PolskieRadioIE,
  683. PolskieRadioCategoryIE,
  684. )
  685. from .porn91 import Porn91IE
  686. from .porncom import PornComIE
  687. from .pornhd import PornHdIE
  688. from .pornhub import (
  689. PornHubIE,
  690. PornHubPlaylistIE,
  691. PornHubUserVideosIE,
  692. )
  693. from .pornotube import PornotubeIE
  694. from .pornovoisines import PornoVoisinesIE
  695. from .pornoxo import PornoXOIE
  696. from .presstv import PressTVIE
  697. from .primesharetv import PrimeShareTVIE
  698. from .promptfile import PromptFileIE
  699. from .prosiebensat1 import ProSiebenSat1IE
  700. from .puls4 import Puls4IE
  701. from .pyvideo import PyvideoIE
  702. from .qqmusic import (
  703. QQMusicIE,
  704. QQMusicSingerIE,
  705. QQMusicAlbumIE,
  706. QQMusicToplistIE,
  707. QQMusicPlaylistIE,
  708. )
  709. from .r7 import (
  710. R7IE,
  711. R7ArticleIE,
  712. )
  713. from .radiocanada import (
  714. RadioCanadaIE,
  715. RadioCanadaAudioVideoIE,
  716. )
  717. from .radiode import RadioDeIE
  718. from .radiojavan import RadioJavanIE
  719. from .radiobremen import RadioBremenIE
  720. from .radiofrance import RadioFranceIE
  721. from .rai import (
  722. RaiTVIE,
  723. RaiIE,
  724. )
  725. from .rbmaradio import RBMARadioIE
  726. from .rds import RDSIE
  727. from .redtube import RedTubeIE
  728. from .regiotv import RegioTVIE
  729. from .restudy import RestudyIE
  730. from .reuters import ReutersIE
  731. from .reverbnation import ReverbNationIE
  732. from .revision3 import (
  733. Revision3EmbedIE,
  734. Revision3IE,
  735. )
  736. from .rice import RICEIE
  737. from .ringtv import RingTVIE
  738. from .rmcdecouverte import RMCDecouverteIE
  739. from .ro220 import Ro220IE
  740. from .rockstargames import RockstarGamesIE
  741. from .roosterteeth import RoosterTeethIE
  742. from .rottentomatoes import RottenTomatoesIE
  743. from .roxwel import RoxwelIE
  744. from .rozhlas import RozhlasIE
  745. from .rtbf import RTBFIE
  746. from .rte import RteIE, RteRadioIE
  747. from .rtlnl import RtlNlIE
  748. from .rtl2 import RTL2IE
  749. from .rtp import RTPIE
  750. from .rts import RTSIE
  751. from .rtve import RTVEALaCartaIE, RTVELiveIE, RTVEInfantilIE, RTVELiveIE, RTVETelevisionIE
  752. from .rtvnh import RTVNHIE
  753. from .rudo import RudoIE
  754. from .ruhd import RUHDIE
  755. from .ruleporn import RulePornIE
  756. from .rutube import (
  757. RutubeIE,
  758. RutubeChannelIE,
  759. RutubeEmbedIE,
  760. RutubeMovieIE,
  761. RutubePersonIE,
  762. )
  763. from .rutv import RUTVIE
  764. from .ruutu import RuutuIE
  765. from .sandia import SandiaIE
  766. from .safari import (
  767. SafariIE,
  768. SafariApiIE,
  769. SafariCourseIE,
  770. )
  771. from .sapo import SapoIE
  772. from .savefrom import SaveFromIE
  773. from .sbs import SBSIE
  774. from .scivee import SciVeeIE
  775. from .screencast import ScreencastIE
  776. from .screencastomatic import ScreencastOMaticIE
  777. from .screenjunkies import ScreenJunkiesIE
  778. from .screenwavemedia import ScreenwaveMediaIE, TeamFourIE
  779. from .seeker import SeekerIE
  780. from .senateisvp import SenateISVPIE
  781. from .sendtonews import SendtoNewsIE
  782. from .servingsys import ServingSysIE
  783. from .sexu import SexuIE
  784. from .shahid import ShahidIE
  785. from .shared import SharedIE
  786. from .sharesix import ShareSixIE
  787. from .sina import SinaIE
  788. from .sixplay import SixPlayIE
  789. from .skynewsarabia import (
  790. SkyNewsArabiaIE,
  791. SkyNewsArabiaArticleIE,
  792. )
  793. from .skysports import SkySportsIE
  794. from .slideshare import SlideshareIE
  795. from .slutload import SlutloadIE
  796. from .smotri import (
  797. SmotriIE,
  798. SmotriCommunityIE,
  799. SmotriUserIE,
  800. SmotriBroadcastIE,
  801. )
  802. from .snotr import SnotrIE
  803. from .sohu import SohuIE
  804. from .sonyliv import SonyLIVIE
  805. from .soundcloud import (
  806. SoundcloudIE,
  807. SoundcloudSetIE,
  808. SoundcloudUserIE,
  809. SoundcloudPlaylistIE,
  810. SoundcloudSearchIE
  811. )
  812. from .soundgasm import (
  813. SoundgasmIE,
  814. SoundgasmProfileIE
  815. )
  816. from .southpark import (
  817. SouthParkIE,
  818. SouthParkDeIE,
  819. SouthParkDkIE,
  820. SouthParkEsIE,
  821. SouthParkNlIE
  822. )
  823. from .spankbang import SpankBangIE
  824. from .spankwire import SpankwireIE
  825. from .spiegel import SpiegelIE, SpiegelArticleIE
  826. from .spiegeltv import SpiegeltvIE
  827. from .spike import SpikeIE
  828. from .stitcher import StitcherIE
  829. from .sport5 import Sport5IE
  830. from .sportbox import (
  831. SportBoxIE,
  832. SportBoxEmbedIE,
  833. )
  834. from .sportdeutschland import SportDeutschlandIE
  835. from .sportschau import SportschauIE
  836. from .srgssr import (
  837. SRGSSRIE,
  838. SRGSSRPlayIE,
  839. )
  840. from .srmediathek import SRMediathekIE
  841. from .stanfordoc import StanfordOpenClassroomIE
  842. from .steam import SteamIE
  843. from .streamable import StreamableIE
  844. from .streamcloud import StreamcloudIE
  845. from .streamcz import StreamCZIE
  846. from .streetvoice import StreetVoiceIE
  847. from .sunporno import SunPornoIE
  848. from .svt import (
  849. SVTIE,
  850. SVTPlayIE,
  851. )
  852. from .swrmediathek import SWRMediathekIE
  853. from .syfy import SyfyIE
  854. from .sztvhu import SztvHuIE
  855. from .tagesschau import (
  856. TagesschauPlayerIE,
  857. TagesschauIE,
  858. )
  859. from .tass import TassIE
  860. from .tbs import TBSIE
  861. from .tdslifeway import TDSLifewayIE
  862. from .teachertube import (
  863. TeacherTubeIE,
  864. TeacherTubeUserIE,
  865. )
  866. from .teachingchannel import TeachingChannelIE
  867. from .teamcoco import TeamcocoIE
  868. from .techtalks import TechTalksIE
  869. from .ted import TEDIE
  870. from .tele13 import Tele13IE
  871. from .telebruxelles import TeleBruxellesIE
  872. from .telecinco import TelecincoIE
  873. from .telegraaf import TelegraafIE
  874. from .telemb import TeleMBIE
  875. from .telequebec import TeleQuebecIE
  876. from .teletask import TeleTaskIE
  877. from .telewebion import TelewebionIE
  878. from .testurl import TestURLIE
  879. from .tf1 import TF1IE
  880. from .tfo import TFOIE
  881. from .theintercept import TheInterceptIE
  882. from .theplatform import (
  883. ThePlatformIE,
  884. ThePlatformFeedIE,
  885. )
  886. from .thescene import TheSceneIE
  887. from .thesixtyone import TheSixtyOneIE
  888. from .thestar import TheStarIE
  889. from .thisamericanlife import ThisAmericanLifeIE
  890. from .thisav import ThisAVIE
  891. from .threeqsdn import ThreeQSDNIE
  892. from .tinypic import TinyPicIE
  893. from .tlc import TlcDeIE
  894. from .tmz import (
  895. TMZIE,
  896. TMZArticleIE,
  897. )
  898. from .tnaflix import (
  899. TNAFlixNetworkEmbedIE,
  900. TNAFlixIE,
  901. EMPFlixIE,
  902. MovieFapIE,
  903. )
  904. from .toggle import ToggleIE
  905. from .toutv import TouTvIE
  906. from .toypics import ToypicsUserIE, ToypicsIE
  907. from .traileraddict import TrailerAddictIE
  908. from .trilulilu import TriluliluIE
  909. from .trutv import TruTVIE
  910. from .tube8 import Tube8IE
  911. from .tubitv import TubiTvIE
  912. from .tudou import (
  913. TudouIE,
  914. TudouPlaylistIE,
  915. TudouAlbumIE,
  916. )
  917. from .tumblr import TumblrIE
  918. from .tunein import (
  919. TuneInClipIE,
  920. TuneInStationIE,
  921. TuneInProgramIE,
  922. TuneInTopicIE,
  923. TuneInShortenerIE,
  924. )
  925. from .turbo import TurboIE
  926. from .tutv import TutvIE
  927. from .tv2 import (
  928. TV2IE,
  929. TV2ArticleIE,
  930. )
  931. from .tv3 import TV3IE
  932. from .tv4 import TV4IE
  933. from .tvc import (
  934. TVCIE,
  935. TVCArticleIE,
  936. )
  937. from .tvigle import TvigleIE
  938. from .tvland import TVLandIE
  939. from .tvnoe import TVNoeIE
  940. from .tvp import (
  941. TVPEmbedIE,
  942. TVPIE,
  943. TVPSeriesIE,
  944. )
  945. from .tvplay import (
  946. TVPlayIE,
  947. ViafreeIE,
  948. )
  949. from .tweakers import TweakersIE
  950. from .twentyfourvideo import TwentyFourVideoIE
  951. from .twentymin import TwentyMinutenIE
  952. from .twentytwotracks import (
  953. TwentyTwoTracksIE,
  954. TwentyTwoTracksGenreIE
  955. )
  956. from .twitch import (
  957. TwitchVideoIE,
  958. TwitchChapterIE,
  959. TwitchVodIE,
  960. TwitchProfileIE,
  961. TwitchPastBroadcastsIE,
  962. TwitchStreamIE,
  963. TwitchClipsIE,
  964. )
  965. from .twitter import (
  966. TwitterCardIE,
  967. TwitterIE,
  968. TwitterAmplifyIE,
  969. )
  970. from .udemy import (
  971. UdemyIE,
  972. UdemyCourseIE
  973. )
  974. from .udn import UDNEmbedIE
  975. from .digiteka import DigitekaIE
  976. from .unistra import UnistraIE
  977. from .uol import UOLIE
  978. from .uplynk import (
  979. UplynkIE,
  980. UplynkPreplayIE,
  981. )
  982. from .urort import UrortIE
  983. from .urplay import URPlayIE
  984. from .usanetwork import USANetworkIE
  985. from .usatoday import USATodayIE
  986. from .ustream import UstreamIE, UstreamChannelIE
  987. from .ustudio import (
  988. UstudioIE,
  989. UstudioEmbedIE,
  990. )
  991. from .varzesh3 import Varzesh3IE
  992. from .vbox7 import Vbox7IE
  993. from .veehd import VeeHDIE
  994. from .veoh import VeohIE
  995. from .vessel import VesselIE
  996. from .vesti import VestiIE
  997. from .vevo import (
  998. VevoIE,
  999. VevoPlaylistIE,
  1000. )
  1001. from .vgtv import (
  1002. BTArticleIE,
  1003. BTVestlendingenIE,
  1004. VGTVIE,
  1005. )
  1006. from .vh1 import VH1IE
  1007. from .vice import (
  1008. ViceIE,
  1009. ViceShowIE,
  1010. )
  1011. from .viceland import VicelandIE
  1012. from .vidbit import VidbitIE
  1013. from .viddler import ViddlerIE
  1014. from .videodetective import VideoDetectiveIE
  1015. from .videofyme import VideofyMeIE
  1016. from .videomega import VideoMegaIE
  1017. from .videomore import (
  1018. VideomoreIE,
  1019. VideomoreVideoIE,
  1020. VideomoreSeasonIE,
  1021. )
  1022. from .videopremium import VideoPremiumIE
  1023. from .videott import VideoTtIE
  1024. from .vidio import VidioIE
  1025. from .vidme import (
  1026. VidmeIE,
  1027. VidmeUserIE,
  1028. VidmeUserLikesIE,
  1029. )
  1030. from .vidzi import VidziIE
  1031. from .vier import VierIE, VierVideosIE
  1032. from .viewlift import (
  1033. ViewLiftIE,
  1034. ViewLiftEmbedIE,
  1035. )
  1036. from .viewster import ViewsterIE
  1037. from .viidea import ViideaIE
  1038. from .vimeo import (
  1039. VimeoIE,
  1040. VimeoAlbumIE,
  1041. VimeoChannelIE,
  1042. VimeoGroupsIE,
  1043. VimeoLikesIE,
  1044. VimeoOndemandIE,
  1045. VimeoReviewIE,
  1046. VimeoUserIE,
  1047. VimeoWatchLaterIE,
  1048. )
  1049. from .vimple import VimpleIE
  1050. from .vine import (
  1051. VineIE,
  1052. VineUserIE,
  1053. )
  1054. from .viki import (
  1055. VikiIE,
  1056. VikiChannelIE,
  1057. )
  1058. from .vk import (
  1059. VKIE,
  1060. VKUserVideosIE,
  1061. VKWallPostIE,
  1062. )
  1063. from .vlive import VLiveIE
  1064. from .vodlocker import VodlockerIE
  1065. from .vodplatform import VODPlatformIE
  1066. from .voicerepublic import VoiceRepublicIE
  1067. from .voxmedia import VoxMediaIE
  1068. from .vporn import VpornIE
  1069. from .vrt import VRTIE
  1070. from .vube import VubeIE
  1071. from .vuclip import VuClipIE
  1072. from .vyborymos import VyboryMosIE
  1073. from .walla import WallaIE
  1074. from .washingtonpost import (
  1075. WashingtonPostIE,
  1076. WashingtonPostArticleIE,
  1077. )
  1078. from .wat import WatIE
  1079. from .watchindianporn import WatchIndianPornIE
  1080. from .wdr import (
  1081. WDRIE,
  1082. WDRMobileIE,
  1083. )
  1084. from .webofstories import (
  1085. WebOfStoriesIE,
  1086. WebOfStoriesPlaylistIE,
  1087. )
  1088. from .weiqitv import WeiqiTVIE
  1089. from .wimp import WimpIE
  1090. from .wistia import WistiaIE
  1091. from .worldstarhiphop import WorldStarHipHopIE
  1092. from .wrzuta import (
  1093. WrzutaIE,
  1094. WrzutaPlaylistIE,
  1095. )
  1096. from .wsj import WSJIE
  1097. from .xbef import XBefIE
  1098. from .xboxclips import XboxClipsIE
  1099. from .xfileshare import XFileShareIE
  1100. from .xhamster import (
  1101. XHamsterIE,
  1102. XHamsterEmbedIE,
  1103. )
  1104. from .xiami import (
  1105. XiamiSongIE,
  1106. XiamiAlbumIE,
  1107. XiamiArtistIE,
  1108. XiamiCollectionIE
  1109. )
  1110. from .xminus import XMinusIE
  1111. from .xnxx import XNXXIE
  1112. from .xstream import XstreamIE
  1113. from .xtube import XTubeUserIE, XTubeIE
  1114. from .xuite import XuiteIE
  1115. from .xvideos import XVideosIE
  1116. from .xxxymovies import XXXYMoviesIE
  1117. from .yahoo import (
  1118. YahooIE,
  1119. YahooSearchIE,
  1120. )
  1121. from .yam import YamIE
  1122. from .yandexmusic import (
  1123. YandexMusicTrackIE,
  1124. YandexMusicAlbumIE,
  1125. YandexMusicPlaylistIE,
  1126. )
  1127. from .yesjapan import YesJapanIE
  1128. from .yinyuetai import YinYueTaiIE
  1129. from .ynet import YnetIE
  1130. from .youjizz import YouJizzIE
  1131. from .youku import (
  1132. YoukuIE,
  1133. YoukuShowIE,
  1134. )
  1135. from .youporn import YouPornIE
  1136. from .yourupload import YourUploadIE
  1137. from .youtube import (
  1138. YoutubeIE,
  1139. YoutubeChannelIE,
  1140. YoutubeFavouritesIE,
  1141. YoutubeHistoryIE,
  1142. YoutubeLiveIE,
  1143. YoutubePlaylistIE,
  1144. YoutubePlaylistsIE,
  1145. YoutubeRecommendedIE,
  1146. YoutubeSearchDateIE,
  1147. YoutubeSearchIE,
  1148. YoutubeSearchURLIE,
  1149. YoutubeSharedVideoIE,
  1150. YoutubeShowIE,
  1151. YoutubeSubscriptionsIE,
  1152. YoutubeTruncatedIDIE,
  1153. YoutubeTruncatedURLIE,
  1154. YoutubeUserIE,
  1155. YoutubeWatchLaterIE,
  1156. )
  1157. from .zapiks import ZapiksIE
  1158. from .zdf import ZDFIE, ZDFChannelIE
  1159. from .zingmp3 import ZingMp3IE