]>
 
 
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/mtv.py 
 
 
 
 
 
 
 
 
   1  from  __future__ 
import  unicode_literals
 
   5  from  . common 
import  InfoExtractor
 
  22  def  _media_xml_tag ( tag
):  
  23      return  '{http://search.yahoo.com/mrss/} %s '  %  tag
 
  26  class  MTVServicesInfoExtractor ( InfoExtractor
):  
  27      _MOBILE_TEMPLATE 
=  None  
  31      def  _id_from_uri ( uri
):  
  32          return  uri
. split ( ':' )[- 1 ]  
  34      # This was originally implemented for ComedyCentral, but it also works here  
  36      def  _transform_rtmp_url ( rtmp_video_url
):  
  37          m 
=  re
. match ( r
'^rtmpe?://.*?/(?P<finalid>gsp\..+?/.*)$' ,  rtmp_video_url
)  
  40          base 
=  'http://viacommtvstrmfs.fplive.net/'  
  41          return  base 
+  m
. group ( 'finalid' )  
  43      def  _get_feed_url ( self
,  uri
):  
  46      def  _get_thumbnail_url ( self
,  uri
,  itemdoc
):  
  47          search_path 
=  ' %s / %s '  % ( _media_xml_tag ( 'group' ),  _media_xml_tag ( 'thumbnail' ))  
  48          thumb_node 
=  itemdoc
. find ( search_path
)  
  49          if  thumb_node 
is None :  
  52              return  thumb_node
. attrib
[ 'url' ]  
  54      def  _extract_mobile_video_formats ( self
,  mtvn_id
):  
  55          webpage_url 
=  self
._ MOBILE
_ TEMPLATE 
%  mtvn_id
 
  56          req 
=  compat_urllib_request
. Request ( webpage_url
)  
  57          # Otherwise we get a webpage that would execute some javascript  
  58          req
. add_header ( 'User-Agent' ,  'curl/7' )  
  59          webpage 
=  self
._ download
_ webpage
( req
,  mtvn_id
,  
  60                                           'Downloading mobile page' )  
  61          metrics_url 
=  unescapeHTML ( self
._ search
_ regex
( r
'<a href="(http://metrics.+?)"' ,  webpage
,  'url' ))  
  62          req 
=  HEADRequest ( metrics_url
)  
  63          response 
=  self
._ request
_ webpage
( req
,  mtvn_id
,  'Resolving url' )  
  64          url 
=  response
. geturl ()  
  65          # Transform the url to get the best quality:  
  66          url 
=  re
. sub ( r
'.+pxE=mp4' ,  'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4' ,  url
,  1 )  
  67          return  [{ 'url' :  url
,  'ext' :  'mp4' }]  
  69      def  _extract_video_formats ( self
,  mdoc
,  mtvn_id
):  
  70          if  re
. match ( r
'.*/(error_country_block\.swf|geoblock\.mp4)$' ,  mdoc
. find ( './/src' ). text
)  is not None :  
  71              if  mtvn_id 
is not None and  self
._ MOBILE
_ TEMPLATE 
is not None :  
  72                  self
. to_screen ( 'The normal version is not available from your '  
  73                                 'country, trying with the mobile version' )  
  74                  return  self
._ extract
_ mobile
_ video
_ formats
( mtvn_id
)  
  75              raise  ExtractorError ( 'This video is not available from your country.' ,  
  79          for  rendition 
in  mdoc
. findall ( './/rendition' ):  
  81                  _
,  _
,  ext 
=  rendition
. attrib
[ 'type' ]. partition ( '/' )  
  82                  rtmp_video_url 
=  rendition
. find ( './src' ). text
 
  83                  if  rtmp_video_url
. endswith ( 'siteunavail.png' ):  
  87                      'url' :  self
._ transform
_ rtmp
_u rl
( rtmp_video_url
),  
  88                      'format_id' :  rendition
. get ( 'bitrate' ),  
  89                      'width' :  int ( rendition
. get ( 'width' )),  
  90                      'height' :  int ( rendition
. get ( 'height' )),  
  92              except  ( KeyError ,  TypeError ):  
  93                  raise  ExtractorError ( 'Invalid rendition field.' )  
  94          self
._ sort
_ formats
( formats
)  
  97      def  _extract_subtitles ( self
,  mdoc
,  mtvn_id
):  
  99          for  transcript 
in  mdoc
. findall ( './/transcript' ):  
 100              if  transcript
. get ( 'kind' ) !=  'captions' :  
 102              lang 
=  transcript
. get ( 'srclang' )  
 104                  'url' :  compat_str ( typographic
. get ( 'src' )),  
 105                  'ext' :  typographic
. get ( 'format' )  
 106              }  for  typographic 
in  transcript
. findall ( './typographic' )]  
 109      def  _get_video_info ( self
,  itemdoc
):  
 110          uri 
=  itemdoc
. find ( 'guid' ). text
 
 111          video_id 
=  self
._ id
_ from
_u ri
( uri
)  
 112          self
. report_extraction ( video_id
)  
 113          mediagen_url 
=  itemdoc
. find ( ' %s / %s '  % ( _media_xml_tag ( 'group' ),  _media_xml_tag ( 'content' ))). attrib
[ 'url' ]  
 114          # Remove the templates, like &device={device}  
 115          mediagen_url 
=  re
. sub ( r
'&[^=]*?={.*?}(?=(&|$))' ,  '' ,  mediagen_url
)  
 116          if  'acceptMethods'  not in  mediagen_url
:  
 117              mediagen_url 
+=  '&acceptMethods=fms'  
 119          mediagen_doc 
=  self
._ download
_ xml
( mediagen_url
,  video_id
,  
 120                                            'Downloading video urls' )  
 122          item 
=  mediagen_doc
. find ( './video/item' )  
 123          if  item 
is not None and  item
. get ( 'type' ) ==  'text' :  
 124              message 
=  ' %s  returned error: '  %  self
. IE_NAME
 
 125              if  item
. get ( 'code' )  is not None :  
 126                  message 
+=  ' %s  - '  %  item
. get ( 'code' )  
 128              raise  ExtractorError ( message
,  expected
= True )  
 130          description_node 
=  itemdoc
. find ( 'description' )  
 131          if  description_node 
is not None :  
 132              description 
=  description_node
. text
. strip ()  
 138              title_el 
=  find_xpath_attr (  
 139                  itemdoc
,  './/{http://search.yahoo.com/mrss/}category' ,  
 140                  'scheme' ,  'urn:mtvn:video_title' )  
 142              title_el 
=  itemdoc
. find ( './/{http://search.yahoo.com/mrss/}title' )  
 144              title_el 
=  itemdoc
. find ( './/title' )  
 145              if  title_el
. text 
is None :  
 148          title 
=  title_el
. text
 
 150              raise  ExtractorError ( 'Could not find video title' )  
 151          title 
=  title
. strip ()  
 153          # This a short id that's used in the webpage urls  
 155          mtvn_id_node 
=  find_xpath_attr ( itemdoc
,  './/{http://search.yahoo.com/mrss/}category' ,  
 156                                         'scheme' ,  'urn:mtvn:id' )  
 157          if  mtvn_id_node 
is not None :  
 158              mtvn_id 
=  mtvn_id_node
. text
 
 162              'formats' :  self
._ extract
_ video
_ formats
( mediagen_doc
,  mtvn_id
),  
 163              'subtitles' :  self
._ extract
_ subtitles
( mediagen_doc
,  mtvn_id
),  
 165              'thumbnail' :  self
._ get
_ thumbnail
_u rl
( uri
,  itemdoc
),  
 166              'description' :  description
,  
 169      def  _get_videos_info ( self
,  uri
):  
 170          video_id 
=  self
._ id
_ from
_u ri
( uri
)  
 171          feed_url 
=  self
._ get
_ feed
_u rl
( uri
)  
 172          data 
=  compat_urllib_parse
. urlencode ({ 'uri' :  uri
})  
 173          info_url 
=  feed_url 
+  '?'  
 175              info_url 
+=  'lang= %s &'  %  self
._L ANG
 
 177          idoc 
=  self
._ download
_ xml
(  
 179              'Downloading info' ,  transform_source
= fix_xml_ampersands
)  
 180          return  self
. playlist_result (  
 181              [ self
._ get
_ video
_ info
( item
)  for  item 
in  idoc
. findall ( './/item' )])  
 183      def  _real_extract ( self
,  url
):  
 184          title 
=  url_basename ( url
)  
 185          webpage 
=  self
._ download
_ webpage
( url
,  title
)  
 187              # the url can be http://media.mtvnservices.com/fb/{mgid}.swf  
 188              # or http://media.mtvnservices.com/{mgid}  
 189              og_url 
=  self
._ og
_ search
_ video
_u rl
( webpage
)  
 190              mgid 
=  url_basename ( og_url
)  
 191              if  mgid
. endswith ( '.swf' ):  
 193          except  RegexNotFoundError
:  
 196          if  mgid 
is None or  ':'  not in  mgid
:  
 197              mgid 
=  self
._ search
_ regex
(  
 198                  [ r
'data-mgid="(.*?)"' ,  r
'swfobject.embedSWF\(".*?(mgid:.*?)"' ],  
 201          videos_info 
=  self
._ get
_ videos
_ info
( mgid
)  
 205  class  MTVServicesEmbeddedIE ( MTVServicesInfoExtractor
):  
 206      IE_NAME 
=  'mtvservices:embedded'  
 207      _VALID_URL 
=  r
'https?://media\.mtvnservices\.com/embed/(?P<mgid>.+?)(\?|/|$)'  
 210          # From http://www.thewrap.com/peter-dinklage-sums-up-game-of-thrones-in-45-seconds-video/  
 211          'url' :  'http://media.mtvnservices.com/embed/mgid:uma:video:mtv.com:1043906/cp~vid%3D1043906%26uri%3Dmgid%3Auma%3Avideo%3Amtv.com%3A1043906' ,  
 212          'md5' :  'cb349b21a7897164cede95bd7bf3fbb9' ,  
 216              'title' :  'Peter Dinklage Sums Up  \' Game Of Thrones \'  In 45 Seconds' ,  
 217              'description' :  '"Sexy sexy sexy, stabby stabby stabby, beautiful language," says Peter Dinklage as he tries summarizing "Game of Thrones" in under a minute.' ,  
 221      def  _get_feed_url ( self
,  uri
):  
 222          video_id 
=  self
._ id
_ from
_u ri
( uri
)  
 223          site_id 
=  uri
. replace ( video_id
,  '' )  
 224          config_url 
= ( 'http://media.mtvnservices.com/pmt/e1/players/ {0} /'  
 225                        'context4/context5/config.xml' . format ( site_id
))  
 226          config_doc 
=  self
._ download
_ xml
( config_url
,  video_id
)  
 227          feed_node 
=  config_doc
. find ( './/feed' )  
 228          feed_url 
=  feed_node
. text
. strip (). split ( '?' )[ 0 ]  
 231      def  _real_extract ( self
,  url
):  
 232          mobj 
=  re
. match ( self
._ VALID
_U RL
,  url
)  
 233          mgid 
=  mobj
. group ( 'mgid' )  
 234          return  self
._ get
_ videos
_ info
( mgid
)  
 237  class  MTVIE ( MTVServicesInfoExtractor
):  
 238      _VALID_URL 
=  r
'''(?x)^https?://  
 239          (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|  
 240             m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''  
 242      _FEED_URL 
=  'http://www.mtv.com/player/embed/AS3/rss/'  
 246              'url' :  'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml' ,  
 247              'md5' :  '850f3f143316b1e71fa56a4edfd6e0f8' ,  
 251                  'title' :  'Taylor Swift - "Ours (VH1 Storytellers)"' ,  
 252                  'description' :  'Album: Taylor Swift performs "Ours" for VH1 Storytellers at Harvey Mudd College.' ,  
 257      def  _get_thumbnail_url ( self
,  uri
,  itemdoc
):  
 258          return  'http://mtv.mtvnimages.com/uri/'  +  uri
 
 260      def  _real_extract ( self
,  url
):  
 261          mobj 
=  re
. match ( self
._ VALID
_U RL
,  url
)  
 262          video_id 
=  mobj
. group ( 'videoid' )  
 263          uri 
=  mobj
. groupdict (). get ( 'mgid' )  
 265              webpage 
=  self
._ download
_ webpage
( url
,  video_id
)  
 267              # Some videos come from Vevo.com  
 269                  r
'(?s)isVevoVideo = true;.*?vevoVideoId = "(.*?)";' ,  webpage
)  
 271                  vevo_id 
=  m_vevo
. group ( 1 )  
 272                  self
. to_screen ( 'Vevo video detected:  %s '  %  vevo_id
)  
 273                  return  self
. url_result ( 'vevo: %s '  %  vevo_id
,  ie
= 'Vevo' )  
 275              uri 
=  self
._ html
_ search
_ regex
( r
'/uri/(.*?)\?' ,  webpage
,  'uri' )  
 276          return  self
._ get
_ videos
_ info
( uri
)  
 279  class  MTVIggyIE ( MTVServicesInfoExtractor
):  
 280      IE_NAME 
=  'mtviggy.com'  
 281      _VALID_URL 
=  r
'https?://www\.mtviggy\.com/videos/.+'  
 283          'url' :  'http://www.mtviggy.com/videos/arcade-fire-behind-the-scenes-at-the-biggest-music-experiment-yet/' ,  
 287              'title' :  'Arcade Fire: Behind the Scenes at the Biggest Music Experiment Yet' ,  
 290      _FEED_URL 
=  'http://all.mtvworldverticals.com/feed-xml/'