extractors.py 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211
  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. ComedyCentralFullEpisodesIE,
  183. ComedyCentralIE,
  184. ComedyCentralShortnameIE,
  185. ComedyCentralTVIE,
  186. ToshIE,
  187. )
  188. from .comcarcoff import ComCarCoffIE
  189. from .commonmistakes import CommonMistakesIE, UnicodeBOMIE
  190. from .commonprotocols import (
  191. MmsIE,
  192. RtmpIE,
  193. )
  194. from .condenast import CondeNastIE
  195. from .cracked import CrackedIE
  196. from .crackle import CrackleIE
  197. from .criterion import CriterionIE
  198. from .crooksandliars import CrooksAndLiarsIE
  199. from .crunchyroll import (
  200. CrunchyrollIE,
  201. CrunchyrollShowPlaylistIE
  202. )
  203. from .cspan import CSpanIE
  204. from .ctsnews import CtsNewsIE
  205. from .ctvnews import CTVNewsIE
  206. from .cultureunplugged import CultureUnpluggedIE
  207. from .curiositystream import (
  208. CuriosityStreamIE,
  209. CuriosityStreamCollectionIE,
  210. )
  211. from .cwtv import CWTVIE
  212. from .dailymail import DailyMailIE
  213. from .dailymotion import (
  214. DailymotionIE,
  215. DailymotionPlaylistIE,
  216. DailymotionUserIE,
  217. DailymotionCloudIE,
  218. )
  219. from .daum import (
  220. DaumIE,
  221. DaumClipIE,
  222. DaumPlaylistIE,
  223. DaumUserIE,
  224. )
  225. from .dbtv import DBTVIE
  226. from .dctp import DctpTvIE
  227. from .deezer import DeezerPlaylistIE
  228. from .democracynow import DemocracynowIE
  229. from .dfb import DFBIE
  230. from .dhm import DHMIE
  231. from .dotsub import DotsubIE
  232. from .douyutv import DouyuTVIE
  233. from .dplay import DPlayIE
  234. from .dramafever import (
  235. DramaFeverIE,
  236. DramaFeverSeriesIE,
  237. )
  238. from .dreisat import DreiSatIE
  239. from .drbonanza import DRBonanzaIE
  240. from .drtuber import DrTuberIE
  241. from .drtv import DRTVIE
  242. from .dvtv import DVTVIE
  243. from .dumpert import DumpertIE
  244. from .defense import DefenseGouvFrIE
  245. from .discovery import DiscoveryIE
  246. from .discoverygo import DiscoveryGoIE
  247. from .dispeak import DigitallySpeakingIE
  248. from .dropbox import DropboxIE
  249. from .dw import (
  250. DWIE,
  251. DWArticleIE,
  252. )
  253. from .eagleplatform import EaglePlatformIE
  254. from .ebaumsworld import EbaumsWorldIE
  255. from .echomsk import EchoMskIE
  256. from .ehow import EHowIE
  257. from .eighttracks import EightTracksIE
  258. from .einthusan import EinthusanIE
  259. from .eitb import EitbIE
  260. from .ellentv import (
  261. EllenTVIE,
  262. EllenTVClipsIE,
  263. )
  264. from .elpais import ElPaisIE
  265. from .embedly import EmbedlyIE
  266. from .engadget import EngadgetIE
  267. from .eporner import EpornerIE
  268. from .eroprofile import EroProfileIE
  269. from .escapist import EscapistIE
  270. from .espn import (
  271. ESPNIE,
  272. ESPNArticleIE,
  273. )
  274. from .esri import EsriVideoIE
  275. from .europa import EuropaIE
  276. from .everyonesmixtape import EveryonesMixtapeIE
  277. from .expotv import ExpoTVIE
  278. from .extremetube import ExtremeTubeIE
  279. from .eyedotv import EyedoTVIE
  280. from .facebook import (
  281. FacebookIE,
  282. FacebookPluginsVideoIE,
  283. )
  284. from .faz import FazIE
  285. from .fc2 import (
  286. FC2IE,
  287. FC2EmbedIE,
  288. )
  289. from .fczenit import FczenitIE
  290. from .firstpost import FirstpostIE
  291. from .firsttv import FirstTVIE
  292. from .fivemin import FiveMinIE
  293. from .fivetv import FiveTVIE
  294. from .fktv import FKTVIE
  295. from .flickr import FlickrIE
  296. from .flipagram import FlipagramIE
  297. from .folketinget import FolketingetIE
  298. from .footyroom import FootyRoomIE
  299. from .formula1 import Formula1IE
  300. from .fourtube import FourTubeIE
  301. from .fox import FOXIE
  302. from .fox9 import FOX9IE
  303. from .foxgay import FoxgayIE
  304. from .foxnews import (
  305. FoxNewsIE,
  306. FoxNewsArticleIE,
  307. FoxNewsInsiderIE,
  308. )
  309. from .foxsports import FoxSportsIE
  310. from .franceculture import FranceCultureIE
  311. from .franceinter import FranceInterIE
  312. from .francetv import (
  313. PluzzIE,
  314. FranceTvInfoIE,
  315. FranceTVIE,
  316. GenerationQuoiIE,
  317. CultureboxIE,
  318. )
  319. from .freesound import FreesoundIE
  320. from .freespeech import FreespeechIE
  321. from .freevideo import FreeVideoIE
  322. from .funimation import FunimationIE
  323. from .funnyordie import FunnyOrDieIE
  324. from .fusion import FusionIE
  325. from .fxnetworks import FXNetworksIE
  326. from .gameinformer import GameInformerIE
  327. from .gameone import (
  328. GameOneIE,
  329. GameOnePlaylistIE,
  330. )
  331. from .gamersyde import GamersydeIE
  332. from .gamespot import GameSpotIE
  333. from .gamestar import GameStarIE
  334. from .gazeta import GazetaIE
  335. from .gdcvault import GDCVaultIE
  336. from .generic import GenericIE
  337. from .gfycat import GfycatIE
  338. from .giantbomb import GiantBombIE
  339. from .giga import GigaIE
  340. from .glide import GlideIE
  341. from .globo import (
  342. GloboIE,
  343. GloboArticleIE,
  344. )
  345. from .go import GoIE
  346. from .godtube import GodTubeIE
  347. from .godtv import GodTVIE
  348. from .golem import GolemIE
  349. from .googledrive import GoogleDriveIE
  350. from .googleplus import GooglePlusIE
  351. from .googlesearch import GoogleSearchIE
  352. from .goshgay import GoshgayIE
  353. from .gputechconf import GPUTechConfIE
  354. from .groupon import GrouponIE
  355. from .hark import HarkIE
  356. from .hbo import (
  357. HBOIE,
  358. HBOEpisodeIE,
  359. )
  360. from .hearthisat import HearThisAtIE
  361. from .heise import HeiseIE
  362. from .hellporno import HellPornoIE
  363. from .helsinki import HelsinkiIE
  364. from .hentaistigma import HentaiStigmaIE
  365. from .hgtv import (
  366. HGTVIE,
  367. HGTVComShowIE,
  368. )
  369. from .historicfilms import HistoricFilmsIE
  370. from .hitbox import HitboxIE, HitboxLiveIE
  371. from .hornbunny import HornBunnyIE
  372. from .hotnewhiphop import HotNewHipHopIE
  373. from .hotstar import HotStarIE
  374. from .howcast import HowcastIE
  375. from .howstuffworks import HowStuffWorksIE
  376. from .hrti import (
  377. HRTiIE,
  378. HRTiPlaylistIE,
  379. )
  380. from .huajiao import HuajiaoIE
  381. from .huffpost import HuffPostIE
  382. from .hypem import HypemIE
  383. from .iconosquare import IconosquareIE
  384. from .ign import (
  385. IGNIE,
  386. OneUPIE,
  387. PCMagIE,
  388. )
  389. from .imdb import (
  390. ImdbIE,
  391. ImdbListIE
  392. )
  393. from .imgur import (
  394. ImgurIE,
  395. ImgurAlbumIE,
  396. )
  397. from .ina import InaIE
  398. from .indavideo import (
  399. IndavideoIE,
  400. IndavideoEmbedIE,
  401. )
  402. from .infoq import InfoQIE
  403. from .instagram import InstagramIE, InstagramUserIE
  404. from .internetvideoarchive import InternetVideoArchiveIE
  405. from .iprima import IPrimaIE
  406. from .iqiyi import IqiyiIE
  407. from .ir90tv import Ir90TvIE
  408. from .ivi import (
  409. IviIE,
  410. IviCompilationIE
  411. )
  412. from .ivideon import IvideonIE
  413. from .iwara import IwaraIE
  414. from .izlesene import IzleseneIE
  415. from .jamendo import (
  416. JamendoIE,
  417. JamendoAlbumIE,
  418. )
  419. from .jeuxvideo import JeuxVideoIE
  420. from .jove import JoveIE
  421. from .jwplatform import JWPlatformIE
  422. from .jpopsukitv import JpopsukiIE
  423. from .kaltura import KalturaIE
  424. from .kamcord import KamcordIE
  425. from .kanalplay import KanalPlayIE
  426. from .kankan import KankanIE
  427. from .karaoketv import KaraoketvIE
  428. from .karrierevideos import KarriereVideosIE
  429. from .keezmovies import KeezMoviesIE
  430. from .ketnet import KetnetIE
  431. from .khanacademy import KhanAcademyIE
  432. from .kickstarter import KickStarterIE
  433. from .keek import KeekIE
  434. from .konserthusetplay import KonserthusetPlayIE
  435. from .kontrtube import KontrTubeIE
  436. from .krasview import KrasViewIE
  437. from .ku6 import Ku6IE
  438. from .kusi import KUSIIE
  439. from .kuwo import (
  440. KuwoIE,
  441. KuwoAlbumIE,
  442. KuwoChartIE,
  443. KuwoSingerIE,
  444. KuwoCategoryIE,
  445. KuwoMvIE,
  446. )
  447. from .la7 import LA7IE
  448. from .laola1tv import Laola1TvIE
  449. from .lci import LCIIE
  450. from .lcp import (
  451. LcpPlayIE,
  452. LcpIE,
  453. )
  454. from .learnr import LearnrIE
  455. from .lecture2go import Lecture2GoIE
  456. from .lego import LEGOIE
  457. from .lemonde import LemondeIE
  458. from .leeco import (
  459. LeIE,
  460. LePlaylistIE,
  461. LetvCloudIE,
  462. )
  463. from .libraryofcongress import LibraryOfCongressIE
  464. from .libsyn import LibsynIE
  465. from .lifenews import (
  466. LifeNewsIE,
  467. LifeEmbedIE,
  468. )
  469. from .limelight import (
  470. LimelightMediaIE,
  471. LimelightChannelIE,
  472. LimelightChannelListIE,
  473. )
  474. from .litv import LiTVIE
  475. from .liveleak import LiveLeakIE
  476. from .livestream import (
  477. LivestreamIE,
  478. LivestreamOriginalIE,
  479. LivestreamShortenerIE,
  480. )
  481. from .lnkgo import LnkGoIE
  482. from .localnews8 import LocalNews8IE
  483. from .lovehomeporn import LoveHomePornIE
  484. from .lrt import LRTIE
  485. from .lynda import (
  486. LyndaIE,
  487. LyndaCourseIE
  488. )
  489. from .m6 import M6IE
  490. from .macgamestore import MacGameStoreIE
  491. from .mailru import MailRuIE
  492. from .makerschannel import MakersChannelIE
  493. from .makertv import MakerTVIE
  494. from .mangomolo import (
  495. MangomoloVideoIE,
  496. MangomoloLiveIE,
  497. )
  498. from .matchtv import MatchTVIE
  499. from .mdr import MDRIE
  500. from .meipai import MeipaiIE
  501. from .melonvod import MelonVODIE
  502. from .meta import METAIE
  503. from .metacafe import MetacafeIE
  504. from .metacritic import MetacriticIE
  505. from .mgoon import MgoonIE
  506. from .mgtv import MGTVIE
  507. from .miaopai import MiaoPaiIE
  508. from .microsoftvirtualacademy import (
  509. MicrosoftVirtualAcademyIE,
  510. MicrosoftVirtualAcademyCourseIE,
  511. )
  512. from .minhateca import MinhatecaIE
  513. from .ministrygrid import MinistryGridIE
  514. from .minoto import MinotoIE
  515. from .miomio import MioMioIE
  516. from .mit import TechTVMITIE, MITIE, OCWMITIE
  517. from .mitele import MiTeleIE
  518. from .mixcloud import (
  519. MixcloudIE,
  520. MixcloudUserIE,
  521. MixcloudPlaylistIE,
  522. MixcloudStreamIE,
  523. )
  524. from .mlb import MLBIE
  525. from .mnet import MnetIE
  526. from .mpora import MporaIE
  527. from .moevideo import MoeVideoIE
  528. from .mofosex import MofosexIE
  529. from .mojvideo import MojvideoIE
  530. from .moniker import MonikerIE
  531. from .morningstar import MorningstarIE
  532. from .motherless import MotherlessIE
  533. from .motorsport import MotorsportIE
  534. from .movieclips import MovieClipsIE
  535. from .moviezine import MoviezineIE
  536. from .movingimage import MovingImageIE
  537. from .msn import MSNIE
  538. from .mtv import (
  539. MTVIE,
  540. MTVVideoIE,
  541. MTVServicesEmbeddedIE,
  542. MTVDEIE,
  543. )
  544. from .muenchentv import MuenchenTVIE
  545. from .musicplayon import MusicPlayOnIE
  546. from .mwave import MwaveIE, MwaveMeetGreetIE
  547. from .myspace import MySpaceIE, MySpaceAlbumIE
  548. from .myspass import MySpassIE
  549. from .myvi import MyviIE
  550. from .myvideo import MyVideoIE
  551. from .myvidster import MyVidsterIE
  552. from .nationalgeographic import (
  553. NationalGeographicVideoIE,
  554. NationalGeographicIE,
  555. NationalGeographicEpisodeGuideIE,
  556. )
  557. from .naver import NaverIE
  558. from .nba import NBAIE
  559. from .nbc import (
  560. CSNNEIE,
  561. NBCIE,
  562. NBCNewsIE,
  563. NBCOlympicsIE,
  564. NBCSportsIE,
  565. NBCSportsVPlayerIE,
  566. )
  567. from .ndr import (
  568. NDRIE,
  569. NJoyIE,
  570. NDREmbedBaseIE,
  571. NDREmbedIE,
  572. NJoyEmbedIE,
  573. )
  574. from .ndtv import NDTVIE
  575. from .netzkino import NetzkinoIE
  576. from .nerdcubed import NerdCubedFeedIE
  577. from .neteasemusic import (
  578. NetEaseMusicIE,
  579. NetEaseMusicAlbumIE,
  580. NetEaseMusicSingerIE,
  581. NetEaseMusicListIE,
  582. NetEaseMusicMvIE,
  583. NetEaseMusicProgramIE,
  584. NetEaseMusicDjRadioIE,
  585. )
  586. from .newgrounds import NewgroundsIE
  587. from .newstube import NewstubeIE
  588. from .nextmedia import (
  589. NextMediaIE,
  590. NextMediaActionNewsIE,
  591. AppleDailyIE,
  592. )
  593. from .nfb import NFBIE
  594. from .nfl import NFLIE
  595. from .nhk import NhkVodIE
  596. from .nhl import (
  597. NHLVideocenterIE,
  598. NHLNewsIE,
  599. NHLVideocenterCategoryIE,
  600. NHLIE,
  601. )
  602. from .nick import (
  603. NickIE,
  604. NickDeIE,
  605. NickNightIE,
  606. )
  607. from .niconico import NiconicoIE, NiconicoPlaylistIE
  608. from .ninecninemedia import (
  609. NineCNineMediaStackIE,
  610. NineCNineMediaIE,
  611. )
  612. from .ninegag import NineGagIE
  613. from .ninenow import NineNowIE
  614. from .nintendo import NintendoIE
  615. from .nobelprize import NobelPrizeIE
  616. from .noco import NocoIE
  617. from .normalboots import NormalbootsIE
  618. from .nosvideo import NosVideoIE
  619. from .nova import NovaIE
  620. from .novamov import (
  621. AuroraVidIE,
  622. CloudTimeIE,
  623. NowVideoIE,
  624. VideoWeedIE,
  625. WholeCloudIE,
  626. )
  627. from .nowness import (
  628. NownessIE,
  629. NownessPlaylistIE,
  630. NownessSeriesIE,
  631. )
  632. from .nowtv import (
  633. NowTVIE,
  634. NowTVListIE,
  635. )
  636. from .noz import NozIE
  637. from .npo import (
  638. AndereTijdenIE,
  639. NPOIE,
  640. NPOLiveIE,
  641. NPORadioIE,
  642. NPORadioFragmentIE,
  643. SchoolTVIE,
  644. VPROIE,
  645. WNLIE,
  646. )
  647. from .npr import NprIE
  648. from .nrk import (
  649. NRKIE,
  650. NRKPlaylistIE,
  651. NRKSkoleIE,
  652. NRKTVIE,
  653. )
  654. from .ntvde import NTVDeIE
  655. from .ntvru import NTVRuIE
  656. from .nytimes import (
  657. NYTimesIE,
  658. NYTimesArticleIE,
  659. )
  660. from .nuvid import NuvidIE
  661. from .nzz import NZZIE
  662. from .odatv import OdaTVIE
  663. from .odnoklassniki import OdnoklassnikiIE
  664. from .oktoberfesttv import OktoberfestTVIE
  665. from .ondemandkorea import OnDemandKoreaIE
  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 .seeker import SeekerIE
  811. from .senateisvp import SenateISVPIE
  812. from .sendtonews import SendtoNewsIE
  813. from .servingsys import ServingSysIE
  814. from .sexu import SexuIE
  815. from .shahid import ShahidIE
  816. from .shared import (
  817. SharedIE,
  818. VivoIE,
  819. )
  820. from .sharesix import ShareSixIE
  821. from .sina import SinaIE
  822. from .sixplay import SixPlayIE
  823. from .skynewsarabia import (
  824. SkyNewsArabiaIE,
  825. SkyNewsArabiaArticleIE,
  826. )
  827. from .skysports import SkySportsIE
  828. from .slideshare import SlideshareIE
  829. from .slutload import SlutloadIE
  830. from .smotri import (
  831. SmotriIE,
  832. SmotriCommunityIE,
  833. SmotriUserIE,
  834. SmotriBroadcastIE,
  835. )
  836. from .snotr import SnotrIE
  837. from .sohu import SohuIE
  838. from .sonyliv import SonyLIVIE
  839. from .soundcloud import (
  840. SoundcloudIE,
  841. SoundcloudSetIE,
  842. SoundcloudUserIE,
  843. SoundcloudPlaylistIE,
  844. SoundcloudSearchIE
  845. )
  846. from .soundgasm import (
  847. SoundgasmIE,
  848. SoundgasmProfileIE
  849. )
  850. from .southpark import (
  851. SouthParkIE,
  852. SouthParkDeIE,
  853. SouthParkDkIE,
  854. SouthParkEsIE,
  855. SouthParkNlIE
  856. )
  857. from .spankbang import SpankBangIE
  858. from .spankwire import SpankwireIE
  859. from .spiegel import SpiegelIE, SpiegelArticleIE
  860. from .spiegeltv import SpiegeltvIE
  861. from .spike import SpikeIE
  862. from .stitcher import StitcherIE
  863. from .sport5 import Sport5IE
  864. from .sportbox import (
  865. SportBoxIE,
  866. SportBoxEmbedIE,
  867. )
  868. from .sportdeutschland import SportDeutschlandIE
  869. from .sportschau import SportschauIE
  870. from .srgssr import (
  871. SRGSSRIE,
  872. SRGSSRPlayIE,
  873. )
  874. from .srmediathek import SRMediathekIE
  875. from .stanfordoc import StanfordOpenClassroomIE
  876. from .steam import SteamIE
  877. from .streamable import StreamableIE
  878. from .streamcloud import StreamcloudIE
  879. from .streamcz import StreamCZIE
  880. from .streetvoice import StreetVoiceIE
  881. from .sunporno import SunPornoIE
  882. from .svt import (
  883. SVTIE,
  884. SVTPlayIE,
  885. )
  886. from .swrmediathek import SWRMediathekIE
  887. from .syfy import SyfyIE
  888. from .sztvhu import SztvHuIE
  889. from .tagesschau import (
  890. TagesschauPlayerIE,
  891. TagesschauIE,
  892. )
  893. from .tass import TassIE
  894. from .tbs import TBSIE
  895. from .tdslifeway import TDSLifewayIE
  896. from .teachertube import (
  897. TeacherTubeIE,
  898. TeacherTubeUserIE,
  899. )
  900. from .teachingchannel import TeachingChannelIE
  901. from .teamcoco import TeamcocoIE
  902. from .teamfourstar import TeamFourStarIE
  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 .tvanouvelles import (
  972. TVANouvellesIE,
  973. TVANouvellesArticleIE,
  974. )
  975. from .tvc import (
  976. TVCIE,
  977. TVCArticleIE,
  978. )
  979. from .tvigle import TvigleIE
  980. from .tvland import TVLandIE
  981. from .tvnoe import TVNoeIE
  982. from .tvp import (
  983. TVPEmbedIE,
  984. TVPIE,
  985. TVPSeriesIE,
  986. )
  987. from .tvplay import (
  988. TVPlayIE,
  989. ViafreeIE,
  990. )
  991. from .tweakers import TweakersIE
  992. from .twentyfourvideo import TwentyFourVideoIE
  993. from .twentymin import TwentyMinutenIE
  994. from .twentytwotracks import (
  995. TwentyTwoTracksIE,
  996. TwentyTwoTracksGenreIE
  997. )
  998. from .twitch import (
  999. TwitchVideoIE,
  1000. TwitchChapterIE,
  1001. TwitchVodIE,
  1002. TwitchProfileIE,
  1003. TwitchAllVideosIE,
  1004. TwitchUploadsIE,
  1005. TwitchPastBroadcastsIE,
  1006. TwitchHighlightsIE,
  1007. TwitchStreamIE,
  1008. TwitchClipsIE,
  1009. )
  1010. from .twitter import (
  1011. TwitterCardIE,
  1012. TwitterIE,
  1013. TwitterAmplifyIE,
  1014. )
  1015. from .udemy import (
  1016. UdemyIE,
  1017. UdemyCourseIE
  1018. )
  1019. from .udn import UDNEmbedIE
  1020. from .digiteka import DigitekaIE
  1021. from .unistra import UnistraIE
  1022. from .uol import UOLIE
  1023. from .uplynk import (
  1024. UplynkIE,
  1025. UplynkPreplayIE,
  1026. )
  1027. from .urort import UrortIE
  1028. from .urplay import URPlayIE
  1029. from .usanetwork import USANetworkIE
  1030. from .usatoday import USATodayIE
  1031. from .ustream import UstreamIE, UstreamChannelIE
  1032. from .ustudio import (
  1033. UstudioIE,
  1034. UstudioEmbedIE,
  1035. )
  1036. from .varzesh3 import Varzesh3IE
  1037. from .vbox7 import Vbox7IE
  1038. from .veehd import VeeHDIE
  1039. from .veoh import VeohIE
  1040. from .vessel import VesselIE
  1041. from .vesti import VestiIE
  1042. from .vevo import (
  1043. VevoIE,
  1044. VevoPlaylistIE,
  1045. )
  1046. from .vgtv import (
  1047. BTArticleIE,
  1048. BTVestlendingenIE,
  1049. VGTVIE,
  1050. )
  1051. from .vh1 import VH1IE
  1052. from .vice import (
  1053. ViceIE,
  1054. ViceShowIE,
  1055. )
  1056. from .viceland import VicelandIE
  1057. from .vidbit import VidbitIE
  1058. from .viddler import ViddlerIE
  1059. from .videodetective import VideoDetectiveIE
  1060. from .videofyme import VideofyMeIE
  1061. from .videomega import VideoMegaIE
  1062. from .videomore import (
  1063. VideomoreIE,
  1064. VideomoreVideoIE,
  1065. VideomoreSeasonIE,
  1066. )
  1067. from .videopremium import VideoPremiumIE
  1068. from .videott import VideoTtIE
  1069. from .vidio import VidioIE
  1070. from .vidme import (
  1071. VidmeIE,
  1072. VidmeUserIE,
  1073. VidmeUserLikesIE,
  1074. )
  1075. from .vidzi import VidziIE
  1076. from .vier import VierIE, VierVideosIE
  1077. from .viewlift import (
  1078. ViewLiftIE,
  1079. ViewLiftEmbedIE,
  1080. )
  1081. from .viewster import ViewsterIE
  1082. from .viidea import ViideaIE
  1083. from .vimeo import (
  1084. VimeoIE,
  1085. VimeoAlbumIE,
  1086. VimeoChannelIE,
  1087. VimeoGroupsIE,
  1088. VimeoLikesIE,
  1089. VimeoOndemandIE,
  1090. VimeoReviewIE,
  1091. VimeoUserIE,
  1092. VimeoWatchLaterIE,
  1093. )
  1094. from .vimple import VimpleIE
  1095. from .vine import (
  1096. VineIE,
  1097. VineUserIE,
  1098. )
  1099. from .viki import (
  1100. VikiIE,
  1101. VikiChannelIE,
  1102. )
  1103. from .vk import (
  1104. VKIE,
  1105. VKUserVideosIE,
  1106. VKWallPostIE,
  1107. )
  1108. from .vlive import VLiveIE
  1109. from .vodlocker import VodlockerIE
  1110. from .vodplatform import VODPlatformIE
  1111. from .voicerepublic import VoiceRepublicIE
  1112. from .voxmedia import VoxMediaIE
  1113. from .vporn import VpornIE
  1114. from .vrt import VRTIE
  1115. from .vube import VubeIE
  1116. from .vuclip import VuClipIE
  1117. from .vvvvid import VVVVIDIE
  1118. from .vyborymos import VyboryMosIE
  1119. from .vzaar import VzaarIE
  1120. from .walla import WallaIE
  1121. from .washingtonpost import (
  1122. WashingtonPostIE,
  1123. WashingtonPostArticleIE,
  1124. )
  1125. from .wat import WatIE
  1126. from .watchindianporn import WatchIndianPornIE
  1127. from .wdr import (
  1128. WDRIE,
  1129. WDRMobileIE,
  1130. )
  1131. from .webcaster import (
  1132. WebcasterIE,
  1133. WebcasterFeedIE,
  1134. )
  1135. from .webofstories import (
  1136. WebOfStoriesIE,
  1137. WebOfStoriesPlaylistIE,
  1138. )
  1139. from .weiqitv import WeiqiTVIE
  1140. from .wimp import WimpIE
  1141. from .wistia import WistiaIE
  1142. from .worldstarhiphop import WorldStarHipHopIE
  1143. from .wrzuta import (
  1144. WrzutaIE,
  1145. WrzutaPlaylistIE,
  1146. )
  1147. from .wsj import WSJIE
  1148. from .xbef import XBefIE
  1149. from .xboxclips import XboxClipsIE
  1150. from .xfileshare import XFileShareIE
  1151. from .xhamster import (
  1152. XHamsterIE,
  1153. XHamsterEmbedIE,
  1154. )
  1155. from .xiami import (
  1156. XiamiSongIE,
  1157. XiamiAlbumIE,
  1158. XiamiArtistIE,
  1159. XiamiCollectionIE
  1160. )
  1161. from .xminus import XMinusIE
  1162. from .xnxx import XNXXIE
  1163. from .xstream import XstreamIE
  1164. from .xtube import XTubeUserIE, XTubeIE
  1165. from .xuite import XuiteIE
  1166. from .xvideos import XVideosIE
  1167. from .xxxymovies import XXXYMoviesIE
  1168. from .yahoo import (
  1169. YahooIE,
  1170. YahooSearchIE,
  1171. )
  1172. from .yam import YamIE
  1173. from .yandexmusic import (
  1174. YandexMusicTrackIE,
  1175. YandexMusicAlbumIE,
  1176. YandexMusicPlaylistIE,
  1177. )
  1178. from .yesjapan import YesJapanIE
  1179. from .yinyuetai import YinYueTaiIE
  1180. from .ynet import YnetIE
  1181. from .youjizz import YouJizzIE
  1182. from .youku import (
  1183. YoukuIE,
  1184. YoukuShowIE,
  1185. )
  1186. from .youporn import YouPornIE
  1187. from .yourupload import YourUploadIE
  1188. from .youtube import (
  1189. YoutubeIE,
  1190. YoutubeChannelIE,
  1191. YoutubeFavouritesIE,
  1192. YoutubeHistoryIE,
  1193. YoutubeLiveIE,
  1194. YoutubePlaylistIE,
  1195. YoutubePlaylistsIE,
  1196. YoutubeRecommendedIE,
  1197. YoutubeSearchDateIE,
  1198. YoutubeSearchIE,
  1199. YoutubeSearchURLIE,
  1200. YoutubeSharedVideoIE,
  1201. YoutubeShowIE,
  1202. YoutubeSubscriptionsIE,
  1203. YoutubeTruncatedIDIE,
  1204. YoutubeTruncatedURLIE,
  1205. YoutubeUserIE,
  1206. YoutubeWatchLaterIE,
  1207. )
  1208. from .zapiks import ZapiksIE
  1209. from .zdf import ZDFIE, ZDFChannelIE
  1210. from .zingmp3 import ZingMp3IE