extractors.py 27 KB

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