Merge pull request #1231 from yasoob/master
authorPhilipp Hagemeister <phihag@phihag.de>
Mon, 26 Aug 2013 19:29:04 +0000 (12:29 -0700)
committerPhilipp Hagemeister <phihag@phihag.de>
Mon, 26 Aug 2013 19:29:04 +0000 (12:29 -0700)
Added an IE for hark.com

1  2 
youtube_dl/extractor/__init__.py

index 39c530ba37964096b69e16689c5b36b214a84f3c,ca566457790643703ef468ef3115dd32394f678c..f71ae2713b06d33f2b48f1ec89b1d75604236fa7
@@@ -29,6 -29,7 +29,7 @@@ from .gametrailers import GametrailersI
  from .generic import GenericIE
  from .googleplus import GooglePlusIE
  from .googlesearch import GoogleSearchIE
+ from .hark import HarkIE
  from .hotnewhiphop import HotNewHipHopIE
  from .howcast import HowcastIE
  from .hypem import HypemIE
@@@ -36,7 -37,6 +37,7 @@@ from .ign import IGNIE, OneUPI
  from .ina import InaIE
  from .infoq import InfoQIE
  from .instagram import InstagramIE
 +from .jeuxvideo import JeuxVideoIE
  from .jukebox import JukeboxIE
  from .justintv import JustinTVIE
  from .kankan import KankanIE
@@@ -51,17 -51,13 +52,17 @@@ from .myspass import MySpassI
  from .myvideo import MyVideoIE
  from .nba import NBAIE
  from .ooyala import OoyalaIE
 +from .pbs import PBSIE
  from .photobucket import PhotobucketIE
  from .pornotube import PornotubeIE
  from .rbmaradio import RBMARadioIE
  from .redtube import RedTubeIE
  from .ringtv import RingTVIE
 +from .ro220 import Ro220IE
  from .roxwel import RoxwelIE
 +from .rtlnow import RTLnowIE
  from .sina import SinaIE
 +from .slashdot import SlashdotIE
  from .soundcloud import SoundcloudIE, SoundcloudSetIE
  from .spiegel import SpiegelIE
  from .stanfordoc import StanfordOpenClassroomIE
@@@ -76,7 -72,6 +77,7 @@@ from .tudou import TudouI
  from .tumblr import TumblrIE
  from .tutv import TutvIE
  from .ustream import UstreamIE
 +from .unistra import UnistraIE
  from .vbox7 import Vbox7IE
  from .veoh import VeohIE
  from .vevo import VevoIE
@@@ -117,14 -112,12 +118,14 @@@ _ALL_CLASSES = 
  ]
  _ALL_CLASSES.append(GenericIE)
  
 +
  def gen_extractors():
      """ Return a list of an instance of every supported extractor.
      The order does matter; the first extractor matched is the one handling the URL.
      """
      return [klass() for klass in _ALL_CLASSES]
  
 +
  def get_info_extractor(ie_name):
      """Returns the info extractor class with the given ie_name"""
      return globals()[ie_name+'IE']