2
0

extractors.py 27 KB

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