extractors.py 27 KB

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