extractors.py 28 KB

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