extractors.py 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180
  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 .jeuxvideo import JeuxVideoIE
  411. from .jove import JoveIE
  412. from .jwplatform import JWPlatformIE
  413. from .jpopsukitv import JpopsukiIE
  414. from .kaltura import KalturaIE
  415. from .kamcord import KamcordIE
  416. from .kanalplay import KanalPlayIE
  417. from .kankan import KankanIE
  418. from .karaoketv import KaraoketvIE
  419. from .karrierevideos import KarriereVideosIE
  420. from .keezmovies import KeezMoviesIE
  421. from .ketnet import KetnetIE
  422. from .khanacademy import KhanAcademyIE
  423. from .kickstarter import KickStarterIE
  424. from .keek import KeekIE
  425. from .konserthusetplay import KonserthusetPlayIE
  426. from .kontrtube import KontrTubeIE
  427. from .krasview import KrasViewIE
  428. from .ku6 import Ku6IE
  429. from .kusi import KUSIIE
  430. from .kuwo import (
  431. KuwoIE,
  432. KuwoAlbumIE,
  433. KuwoChartIE,
  434. KuwoSingerIE,
  435. KuwoCategoryIE,
  436. KuwoMvIE,
  437. )
  438. from .la7 import LA7IE
  439. from .laola1tv import Laola1TvIE
  440. from .lci import LCIIE
  441. from .lcp import (
  442. LcpPlayIE,
  443. LcpIE,
  444. )
  445. from .learnr import LearnrIE
  446. from .lecture2go import Lecture2GoIE
  447. from .lego import LEGOIE
  448. from .lemonde import LemondeIE
  449. from .leeco import (
  450. LeIE,
  451. LePlaylistIE,
  452. LetvCloudIE,
  453. )
  454. from .libraryofcongress import LibraryOfCongressIE
  455. from .libsyn import LibsynIE
  456. from .lifenews import (
  457. LifeNewsIE,
  458. LifeEmbedIE,
  459. )
  460. from .limelight import (
  461. LimelightMediaIE,
  462. LimelightChannelIE,
  463. LimelightChannelListIE,
  464. )
  465. from .litv import LiTVIE
  466. from .liveleak import LiveLeakIE
  467. from .livestream import (
  468. LivestreamIE,
  469. LivestreamOriginalIE,
  470. LivestreamShortenerIE,
  471. )
  472. from .lnkgo import LnkGoIE
  473. from .localnews8 import LocalNews8IE
  474. from .lovehomeporn import LoveHomePornIE
  475. from .lrt import LRTIE
  476. from .lynda import (
  477. LyndaIE,
  478. LyndaCourseIE
  479. )
  480. from .m6 import M6IE
  481. from .macgamestore import MacGameStoreIE
  482. from .mailru import MailRuIE
  483. from .makerschannel import MakersChannelIE
  484. from .makertv import MakerTVIE
  485. from .mangomolo import (
  486. MangomoloVideoIE,
  487. MangomoloLiveIE,
  488. )
  489. from .matchtv import MatchTVIE
  490. from .mdr import MDRIE
  491. from .meta import METAIE
  492. from .metacafe import MetacafeIE
  493. from .metacritic import MetacriticIE
  494. from .mgoon import MgoonIE
  495. from .mgtv import MGTVIE
  496. from .miaopai import MiaoPaiIE
  497. from .microsoftvirtualacademy import (
  498. MicrosoftVirtualAcademyIE,
  499. MicrosoftVirtualAcademyCourseIE,
  500. )
  501. from .minhateca import MinhatecaIE
  502. from .ministrygrid import MinistryGridIE
  503. from .minoto import MinotoIE
  504. from .miomio import MioMioIE
  505. from .mit import TechTVMITIE, MITIE, OCWMITIE
  506. from .mitele import MiTeleIE
  507. from .mixcloud import (
  508. MixcloudIE,
  509. MixcloudUserIE,
  510. MixcloudPlaylistIE,
  511. MixcloudStreamIE,
  512. )
  513. from .mlb import MLBIE
  514. from .mnet import MnetIE
  515. from .mpora import MporaIE
  516. from .moevideo import MoeVideoIE
  517. from .mofosex import MofosexIE
  518. from .mojvideo import MojvideoIE
  519. from .moniker import MonikerIE
  520. from .morningstar import MorningstarIE
  521. from .motherless import MotherlessIE
  522. from .motorsport import MotorsportIE
  523. from .movieclips import MovieClipsIE
  524. from .moviezine import MoviezineIE
  525. from .movingimage import MovingImageIE
  526. from .msn import MSNIE
  527. from .mtv import (
  528. MTVIE,
  529. MTVVideoIE,
  530. MTVServicesEmbeddedIE,
  531. MTVDEIE,
  532. )
  533. from .muenchentv import MuenchenTVIE
  534. from .musicplayon import MusicPlayOnIE
  535. from .mwave import MwaveIE, MwaveMeetGreetIE
  536. from .myspace import MySpaceIE, MySpaceAlbumIE
  537. from .myspass import MySpassIE
  538. from .myvi import MyviIE
  539. from .myvideo import MyVideoIE
  540. from .myvidster import MyVidsterIE
  541. from .nationalgeographic import (
  542. NationalGeographicVideoIE,
  543. NationalGeographicIE,
  544. NationalGeographicEpisodeGuideIE,
  545. )
  546. from .naver import NaverIE
  547. from .nba import NBAIE
  548. from .nbc import (
  549. CSNNEIE,
  550. NBCIE,
  551. NBCNewsIE,
  552. NBCOlympicsIE,
  553. NBCSportsIE,
  554. NBCSportsVPlayerIE,
  555. )
  556. from .ndr import (
  557. NDRIE,
  558. NJoyIE,
  559. NDREmbedBaseIE,
  560. NDREmbedIE,
  561. NJoyEmbedIE,
  562. )
  563. from .ndtv import NDTVIE
  564. from .netzkino import NetzkinoIE
  565. from .nerdcubed import NerdCubedFeedIE
  566. from .neteasemusic import (
  567. NetEaseMusicIE,
  568. NetEaseMusicAlbumIE,
  569. NetEaseMusicSingerIE,
  570. NetEaseMusicListIE,
  571. NetEaseMusicMvIE,
  572. NetEaseMusicProgramIE,
  573. NetEaseMusicDjRadioIE,
  574. )
  575. from .newgrounds import NewgroundsIE
  576. from .newstube import NewstubeIE
  577. from .nextmedia import (
  578. NextMediaIE,
  579. NextMediaActionNewsIE,
  580. AppleDailyIE,
  581. )
  582. from .nfb import NFBIE
  583. from .nfl import NFLIE
  584. from .nhk import NhkVodIE
  585. from .nhl import (
  586. NHLVideocenterIE,
  587. NHLNewsIE,
  588. NHLVideocenterCategoryIE,
  589. NHLIE,
  590. )
  591. from .nick import (
  592. NickIE,
  593. NickDeIE,
  594. )
  595. from .niconico import NiconicoIE, NiconicoPlaylistIE
  596. from .ninecninemedia import (
  597. NineCNineMediaStackIE,
  598. NineCNineMediaIE,
  599. )
  600. from .ninegag import NineGagIE
  601. from .ninenow import NineNowIE
  602. from .nintendo import NintendoIE
  603. from .noco import NocoIE
  604. from .normalboots import NormalbootsIE
  605. from .nosvideo import NosVideoIE
  606. from .nova import NovaIE
  607. from .novamov import (
  608. AuroraVidIE,
  609. CloudTimeIE,
  610. NowVideoIE,
  611. VideoWeedIE,
  612. WholeCloudIE,
  613. )
  614. from .nowness import (
  615. NownessIE,
  616. NownessPlaylistIE,
  617. NownessSeriesIE,
  618. )
  619. from .nowtv import (
  620. NowTVIE,
  621. NowTVListIE,
  622. )
  623. from .noz import NozIE
  624. from .npo import (
  625. AndereTijdenIE,
  626. NPOIE,
  627. NPOLiveIE,
  628. NPORadioIE,
  629. NPORadioFragmentIE,
  630. SchoolTVIE,
  631. VPROIE,
  632. WNLIE,
  633. )
  634. from .npr import NprIE
  635. from .nrk import (
  636. NRKIE,
  637. NRKPlaylistIE,
  638. NRKSkoleIE,
  639. NRKTVIE,
  640. )
  641. from .ntvde import NTVDeIE
  642. from .ntvru import NTVRuIE
  643. from .nytimes import (
  644. NYTimesIE,
  645. NYTimesArticleIE,
  646. )
  647. from .nuvid import NuvidIE
  648. from .nzz import NZZIE
  649. from .odatv import OdaTVIE
  650. from .odnoklassniki import OdnoklassnikiIE
  651. from .oktoberfesttv import OktoberfestTVIE
  652. from .onet import (
  653. OnetIE,
  654. OnetChannelIE,
  655. )
  656. from .onionstudios import OnionStudiosIE
  657. from .ooyala import (
  658. OoyalaIE,
  659. OoyalaExternalIE,
  660. )
  661. from .openload import OpenloadIE
  662. from .ora import OraTVIE
  663. from .orf import (
  664. ORFTVthekIE,
  665. ORFOE1IE,
  666. ORFFM4IE,
  667. ORFIPTVIE,
  668. )
  669. from .pandatv import PandaTVIE
  670. from .pandoratv import PandoraTVIE
  671. from .parliamentliveuk import ParliamentLiveUKIE
  672. from .patreon import PatreonIE
  673. from .pbs import PBSIE
  674. from .people import PeopleIE
  675. from .periscope import (
  676. PeriscopeIE,
  677. PeriscopeUserIE,
  678. )
  679. from .philharmoniedeparis import PhilharmonieDeParisIE
  680. from .phoenix import PhoenixIE
  681. from .photobucket import PhotobucketIE
  682. from .pinkbike import PinkbikeIE
  683. from .pladform import PladformIE
  684. from .playfm import PlayFMIE
  685. from .plays import PlaysTVIE
  686. from .playtvak import PlaytvakIE
  687. from .playvid import PlayvidIE
  688. from .playwire import PlaywireIE
  689. from .pluralsight import (
  690. PluralsightIE,
  691. PluralsightCourseIE,
  692. )
  693. from .podomatic import PodomaticIE
  694. from .pokemon import PokemonIE
  695. from .polskieradio import (
  696. PolskieRadioIE,
  697. PolskieRadioCategoryIE,
  698. )
  699. from .porn91 import Porn91IE
  700. from .porncom import PornComIE
  701. from .pornhd import PornHdIE
  702. from .pornhub import (
  703. PornHubIE,
  704. PornHubPlaylistIE,
  705. PornHubUserVideosIE,
  706. )
  707. from .pornotube import PornotubeIE
  708. from .pornovoisines import PornoVoisinesIE
  709. from .pornoxo import PornoXOIE
  710. from .presstv import PressTVIE
  711. from .primesharetv import PrimeShareTVIE
  712. from .promptfile import PromptFileIE
  713. from .prosiebensat1 import ProSiebenSat1IE
  714. from .puls4 import Puls4IE
  715. from .pyvideo import PyvideoIE
  716. from .qqmusic import (
  717. QQMusicIE,
  718. QQMusicSingerIE,
  719. QQMusicAlbumIE,
  720. QQMusicToplistIE,
  721. QQMusicPlaylistIE,
  722. )
  723. from .r7 import (
  724. R7IE,
  725. R7ArticleIE,
  726. )
  727. from .radiocanada import (
  728. RadioCanadaIE,
  729. RadioCanadaAudioVideoIE,
  730. )
  731. from .radiode import RadioDeIE
  732. from .radiojavan import RadioJavanIE
  733. from .radiobremen import RadioBremenIE
  734. from .radiofrance import RadioFranceIE
  735. from .rai import (
  736. RaiTVIE,
  737. RaiIE,
  738. )
  739. from .rbmaradio import RBMARadioIE
  740. from .rds import RDSIE
  741. from .redtube import RedTubeIE
  742. from .regiotv import RegioTVIE
  743. from .restudy import RestudyIE
  744. from .reuters import ReutersIE
  745. from .reverbnation import ReverbNationIE
  746. from .revision3 import (
  747. Revision3EmbedIE,
  748. Revision3IE,
  749. )
  750. from .rice import RICEIE
  751. from .ringtv import RingTVIE
  752. from .rmcdecouverte import RMCDecouverteIE
  753. from .ro220 import Ro220IE
  754. from .rockstargames import RockstarGamesIE
  755. from .roosterteeth import RoosterTeethIE
  756. from .rottentomatoes import RottenTomatoesIE
  757. from .roxwel import RoxwelIE
  758. from .rozhlas import RozhlasIE
  759. from .rtbf import RTBFIE
  760. from .rte import RteIE, RteRadioIE
  761. from .rtlnl import RtlNlIE
  762. from .rtl2 import RTL2IE
  763. from .rtp import RTPIE
  764. from .rts import RTSIE
  765. from .rtve import RTVEALaCartaIE, RTVELiveIE, RTVEInfantilIE, RTVELiveIE, RTVETelevisionIE
  766. from .rtvnh import RTVNHIE
  767. from .rudo import RudoIE
  768. from .ruhd import RUHDIE
  769. from .ruleporn import RulePornIE
  770. from .rutube import (
  771. RutubeIE,
  772. RutubeChannelIE,
  773. RutubeEmbedIE,
  774. RutubeMovieIE,
  775. RutubePersonIE,
  776. )
  777. from .rutv import RUTVIE
  778. from .ruutu import RuutuIE
  779. from .sandia import SandiaIE
  780. from .safari import (
  781. SafariIE,
  782. SafariApiIE,
  783. SafariCourseIE,
  784. )
  785. from .sapo import SapoIE
  786. from .savefrom import SaveFromIE
  787. from .sbs import SBSIE
  788. from .scivee import SciVeeIE
  789. from .screencast import ScreencastIE
  790. from .screencastomatic import ScreencastOMaticIE
  791. from .screenjunkies import ScreenJunkiesIE
  792. from .screenwavemedia import ScreenwaveMediaIE, TeamFourIE
  793. from .seeker import SeekerIE
  794. from .senateisvp import SenateISVPIE
  795. from .sendtonews import SendtoNewsIE
  796. from .servingsys import ServingSysIE
  797. from .sexu import SexuIE
  798. from .shahid import ShahidIE
  799. from .shared import (
  800. SharedIE,
  801. VivoIE,
  802. )
  803. from .sharesix import ShareSixIE
  804. from .sina import SinaIE
  805. from .sixplay import SixPlayIE
  806. from .skynewsarabia import (
  807. SkyNewsArabiaIE,
  808. SkyNewsArabiaArticleIE,
  809. )
  810. from .skysports import SkySportsIE
  811. from .slideshare import SlideshareIE
  812. from .slutload import SlutloadIE
  813. from .smotri import (
  814. SmotriIE,
  815. SmotriCommunityIE,
  816. SmotriUserIE,
  817. SmotriBroadcastIE,
  818. )
  819. from .snotr import SnotrIE
  820. from .sohu import SohuIE
  821. from .sonyliv import SonyLIVIE
  822. from .soundcloud import (
  823. SoundcloudIE,
  824. SoundcloudSetIE,
  825. SoundcloudUserIE,
  826. SoundcloudPlaylistIE,
  827. SoundcloudSearchIE
  828. )
  829. from .soundgasm import (
  830. SoundgasmIE,
  831. SoundgasmProfileIE
  832. )
  833. from .southpark import (
  834. SouthParkIE,
  835. SouthParkDeIE,
  836. SouthParkDkIE,
  837. SouthParkEsIE,
  838. SouthParkNlIE
  839. )
  840. from .spankbang import SpankBangIE
  841. from .spankwire import SpankwireIE
  842. from .spiegel import SpiegelIE, SpiegelArticleIE
  843. from .spiegeltv import SpiegeltvIE
  844. from .spike import SpikeIE
  845. from .stitcher import StitcherIE
  846. from .sport5 import Sport5IE
  847. from .sportbox import (
  848. SportBoxIE,
  849. SportBoxEmbedIE,
  850. )
  851. from .sportdeutschland import SportDeutschlandIE
  852. from .sportschau import SportschauIE
  853. from .srgssr import (
  854. SRGSSRIE,
  855. SRGSSRPlayIE,
  856. )
  857. from .srmediathek import SRMediathekIE
  858. from .stanfordoc import StanfordOpenClassroomIE
  859. from .steam import SteamIE
  860. from .streamable import StreamableIE
  861. from .streamcloud import StreamcloudIE
  862. from .streamcz import StreamCZIE
  863. from .streetvoice import StreetVoiceIE
  864. from .sunporno import SunPornoIE
  865. from .svt import (
  866. SVTIE,
  867. SVTPlayIE,
  868. )
  869. from .swrmediathek import SWRMediathekIE
  870. from .syfy import SyfyIE
  871. from .sztvhu import SztvHuIE
  872. from .tagesschau import (
  873. TagesschauPlayerIE,
  874. TagesschauIE,
  875. )
  876. from .tass import TassIE
  877. from .tbs import TBSIE
  878. from .tdslifeway import TDSLifewayIE
  879. from .teachertube import (
  880. TeacherTubeIE,
  881. TeacherTubeUserIE,
  882. )
  883. from .teachingchannel import TeachingChannelIE
  884. from .teamcoco import TeamcocoIE
  885. from .techtalks import TechTalksIE
  886. from .ted import TEDIE
  887. from .tele13 import Tele13IE
  888. from .telebruxelles import TeleBruxellesIE
  889. from .telecinco import TelecincoIE
  890. from .telegraaf import TelegraafIE
  891. from .telemb import TeleMBIE
  892. from .telequebec import TeleQuebecIE
  893. from .teletask import TeleTaskIE
  894. from .telewebion import TelewebionIE
  895. from .testurl import TestURLIE
  896. from .tf1 import TF1IE
  897. from .tfo import TFOIE
  898. from .theintercept import TheInterceptIE
  899. from .theplatform import (
  900. ThePlatformIE,
  901. ThePlatformFeedIE,
  902. )
  903. from .thescene import TheSceneIE
  904. from .thesixtyone import TheSixtyOneIE
  905. from .thestar import TheStarIE
  906. from .theweatherchannel import TheWeatherChannelIE
  907. from .thisamericanlife import ThisAmericanLifeIE
  908. from .thisav import ThisAVIE
  909. from .thisoldhouse import ThisOldHouseIE
  910. from .threeqsdn import ThreeQSDNIE
  911. from .tinypic import TinyPicIE
  912. from .tlc import TlcDeIE
  913. from .tmz import (
  914. TMZIE,
  915. TMZArticleIE,
  916. )
  917. from .tnaflix import (
  918. TNAFlixNetworkEmbedIE,
  919. TNAFlixIE,
  920. EMPFlixIE,
  921. MovieFapIE,
  922. )
  923. from .toggle import ToggleIE
  924. from .tonline import TOnlineIE
  925. from .toutv import TouTvIE
  926. from .toypics import ToypicsUserIE, ToypicsIE
  927. from .traileraddict import TrailerAddictIE
  928. from .trilulilu import TriluliluIE
  929. from .trutv import TruTVIE
  930. from .tube8 import Tube8IE
  931. from .tubitv import TubiTvIE
  932. from .tudou import (
  933. TudouIE,
  934. TudouPlaylistIE,
  935. TudouAlbumIE,
  936. )
  937. from .tumblr import TumblrIE
  938. from .tunein import (
  939. TuneInClipIE,
  940. TuneInStationIE,
  941. TuneInProgramIE,
  942. TuneInTopicIE,
  943. TuneInShortenerIE,
  944. )
  945. from .turbo import TurboIE
  946. from .tutv import TutvIE
  947. from .tv2 import (
  948. TV2IE,
  949. TV2ArticleIE,
  950. )
  951. from .tv3 import TV3IE
  952. from .tv4 import TV4IE
  953. from .tvc import (
  954. TVCIE,
  955. TVCArticleIE,
  956. )
  957. from .tvigle import TvigleIE
  958. from .tvland import TVLandIE
  959. from .tvnoe import TVNoeIE
  960. from .tvp import (
  961. TVPEmbedIE,
  962. TVPIE,
  963. TVPSeriesIE,
  964. )
  965. from .tvplay import (
  966. TVPlayIE,
  967. ViafreeIE,
  968. )
  969. from .tweakers import TweakersIE
  970. from .twentyfourvideo import TwentyFourVideoIE
  971. from .twentymin import TwentyMinutenIE
  972. from .twentytwotracks import (
  973. TwentyTwoTracksIE,
  974. TwentyTwoTracksGenreIE
  975. )
  976. from .twitch import (
  977. TwitchVideoIE,
  978. TwitchChapterIE,
  979. TwitchVodIE,
  980. TwitchProfileIE,
  981. TwitchPastBroadcastsIE,
  982. TwitchStreamIE,
  983. TwitchClipsIE,
  984. )
  985. from .twitter import (
  986. TwitterCardIE,
  987. TwitterIE,
  988. TwitterAmplifyIE,
  989. )
  990. from .udemy import (
  991. UdemyIE,
  992. UdemyCourseIE
  993. )
  994. from .udn import UDNEmbedIE
  995. from .digiteka import DigitekaIE
  996. from .unistra import UnistraIE
  997. from .uol import UOLIE
  998. from .uplynk import (
  999. UplynkIE,
  1000. UplynkPreplayIE,
  1001. )
  1002. from .urort import UrortIE
  1003. from .urplay import URPlayIE
  1004. from .usanetwork import USANetworkIE
  1005. from .usatoday import USATodayIE
  1006. from .ustream import UstreamIE, UstreamChannelIE
  1007. from .ustudio import (
  1008. UstudioIE,
  1009. UstudioEmbedIE,
  1010. )
  1011. from .varzesh3 import Varzesh3IE
  1012. from .vbox7 import Vbox7IE
  1013. from .veehd import VeeHDIE
  1014. from .veoh import VeohIE
  1015. from .vessel import VesselIE
  1016. from .vesti import VestiIE
  1017. from .vevo import (
  1018. VevoIE,
  1019. VevoPlaylistIE,
  1020. )
  1021. from .vgtv import (
  1022. BTArticleIE,
  1023. BTVestlendingenIE,
  1024. VGTVIE,
  1025. )
  1026. from .vh1 import VH1IE
  1027. from .vice import (
  1028. ViceIE,
  1029. ViceShowIE,
  1030. )
  1031. from .viceland import VicelandIE
  1032. from .vidbit import VidbitIE
  1033. from .viddler import ViddlerIE
  1034. from .videodetective import VideoDetectiveIE
  1035. from .videofyme import VideofyMeIE
  1036. from .videomega import VideoMegaIE
  1037. from .videomore import (
  1038. VideomoreIE,
  1039. VideomoreVideoIE,
  1040. VideomoreSeasonIE,
  1041. )
  1042. from .videopremium import VideoPremiumIE
  1043. from .videott import VideoTtIE
  1044. from .vidio import VidioIE
  1045. from .vidme import (
  1046. VidmeIE,
  1047. VidmeUserIE,
  1048. VidmeUserLikesIE,
  1049. )
  1050. from .vidzi import VidziIE
  1051. from .vier import VierIE, VierVideosIE
  1052. from .viewlift import (
  1053. ViewLiftIE,
  1054. ViewLiftEmbedIE,
  1055. )
  1056. from .viewster import ViewsterIE
  1057. from .viidea import ViideaIE
  1058. from .vimeo import (
  1059. VimeoIE,
  1060. VimeoAlbumIE,
  1061. VimeoChannelIE,
  1062. VimeoGroupsIE,
  1063. VimeoLikesIE,
  1064. VimeoOndemandIE,
  1065. VimeoReviewIE,
  1066. VimeoUserIE,
  1067. VimeoWatchLaterIE,
  1068. )
  1069. from .vimple import VimpleIE
  1070. from .vine import (
  1071. VineIE,
  1072. VineUserIE,
  1073. )
  1074. from .viki import (
  1075. VikiIE,
  1076. VikiChannelIE,
  1077. )
  1078. from .vk import (
  1079. VKIE,
  1080. VKUserVideosIE,
  1081. VKWallPostIE,
  1082. )
  1083. from .vlive import VLiveIE
  1084. from .vodlocker import VodlockerIE
  1085. from .vodplatform import VODPlatformIE
  1086. from .voicerepublic import VoiceRepublicIE
  1087. from .voxmedia import VoxMediaIE
  1088. from .vporn import VpornIE
  1089. from .vrt import VRTIE
  1090. from .vube import VubeIE
  1091. from .vuclip import VuClipIE
  1092. from .vyborymos import VyboryMosIE
  1093. from .walla import WallaIE
  1094. from .washingtonpost import (
  1095. WashingtonPostIE,
  1096. WashingtonPostArticleIE,
  1097. )
  1098. from .wat import WatIE
  1099. from .watchindianporn import WatchIndianPornIE
  1100. from .wdr import (
  1101. WDRIE,
  1102. WDRMobileIE,
  1103. )
  1104. from .webofstories import (
  1105. WebOfStoriesIE,
  1106. WebOfStoriesPlaylistIE,
  1107. )
  1108. from .weiqitv import WeiqiTVIE
  1109. from .wimp import WimpIE
  1110. from .wistia import WistiaIE
  1111. from .worldstarhiphop import WorldStarHipHopIE
  1112. from .wrzuta import (
  1113. WrzutaIE,
  1114. WrzutaPlaylistIE,
  1115. )
  1116. from .wsj import WSJIE
  1117. from .xbef import XBefIE
  1118. from .xboxclips import XboxClipsIE
  1119. from .xfileshare import XFileShareIE
  1120. from .xhamster import (
  1121. XHamsterIE,
  1122. XHamsterEmbedIE,
  1123. )
  1124. from .xiami import (
  1125. XiamiSongIE,
  1126. XiamiAlbumIE,
  1127. XiamiArtistIE,
  1128. XiamiCollectionIE
  1129. )
  1130. from .xminus import XMinusIE
  1131. from .xnxx import XNXXIE
  1132. from .xstream import XstreamIE
  1133. from .xtube import XTubeUserIE, XTubeIE
  1134. from .xuite import XuiteIE
  1135. from .xvideos import XVideosIE
  1136. from .xxxymovies import XXXYMoviesIE
  1137. from .yahoo import (
  1138. YahooIE,
  1139. YahooSearchIE,
  1140. )
  1141. from .yam import YamIE
  1142. from .yandexmusic import (
  1143. YandexMusicTrackIE,
  1144. YandexMusicAlbumIE,
  1145. YandexMusicPlaylistIE,
  1146. )
  1147. from .yesjapan import YesJapanIE
  1148. from .yinyuetai import YinYueTaiIE
  1149. from .ynet import YnetIE
  1150. from .youjizz import YouJizzIE
  1151. from .youku import (
  1152. YoukuIE,
  1153. YoukuShowIE,
  1154. )
  1155. from .youporn import YouPornIE
  1156. from .yourupload import YourUploadIE
  1157. from .youtube import (
  1158. YoutubeIE,
  1159. YoutubeChannelIE,
  1160. YoutubeFavouritesIE,
  1161. YoutubeHistoryIE,
  1162. YoutubeLiveIE,
  1163. YoutubePlaylistIE,
  1164. YoutubePlaylistsIE,
  1165. YoutubeRecommendedIE,
  1166. YoutubeSearchDateIE,
  1167. YoutubeSearchIE,
  1168. YoutubeSearchURLIE,
  1169. YoutubeSharedVideoIE,
  1170. YoutubeShowIE,
  1171. YoutubeSubscriptionsIE,
  1172. YoutubeTruncatedIDIE,
  1173. YoutubeTruncatedURLIE,
  1174. YoutubeUserIE,
  1175. YoutubeWatchLaterIE,
  1176. )
  1177. from .zapiks import ZapiksIE
  1178. from .zdf import ZDFIE, ZDFChannelIE
  1179. from .zingmp3 import ZingMp3IE