extractors.py 28 KB

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