extractors.py 27 KB

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