2016-10-02 11:39:18 +00:00
# coding: utf-8
2014-02-23 17:28:22 +00:00
from __future__ import unicode_literals
2014-01-30 17:26:50 +00:00
from . common import InfoExtractor
2016-11-28 16:17:56 +00:00
from . jwplatform import JWPlatformIE
2014-01-30 17:26:50 +00:00
from . . utils import (
unified_strdate ,
)
2014-02-23 17:28:22 +00:00
2014-01-30 17:26:50 +00:00
class NormalbootsIE ( InfoExtractor ) :
2016-03-21 15:36:32 +00:00
_VALID_URL = r ' https?://(?:www \ .)?normalboots \ .com/video/(?P<id>[0-9a-z-]*)/?$ '
2014-01-30 20:01:35 +00:00
_TEST = {
2014-02-23 17:28:22 +00:00
' url ' : ' http://normalboots.com/video/home-alone-games-jontron/ ' ,
' info_dict ' : {
' id ' : ' home-alone-games-jontron ' ,
' ext ' : ' mp4 ' ,
' title ' : ' Home Alone Games - JonTron - NormalBoots ' ,
' description ' : ' Jon is late for Christmas. Typical. Thanks to: Paul Ritchey for Co-Writing/Filming: http://www.youtube.com/user/ContinueShow Michael Azzi for Christmas Intro Animation: http://michafrar.tumblr.com/ Jerrod Waters for Christmas Intro Music: http://www.youtube.com/user/xXJerryTerryXx Casey Ormond for ‘ Tense Battle Theme’ : \xa0 http://www.youtube.com/Kiamet/ ' ,
' uploader ' : ' JonTron ' ,
' upload_date ' : ' 20140125 ' ,
2015-01-05 12:59:49 +00:00
} ,
' params ' : {
2016-04-25 15:49:12 +00:00
# m3u8 download
2015-01-05 12:59:49 +00:00
' skip_download ' : True ,
} ,
2016-11-28 16:17:56 +00:00
' add_ie ' : [ ' JWPlatform ' ] ,
2014-01-30 20:01:35 +00:00
}
2014-02-23 17:28:22 +00:00
2014-01-30 17:26:50 +00:00
def _real_extract ( self , url ) :
2015-02-02 22:04:39 +00:00
video_id = self . _match_id ( url )
2014-01-30 17:26:50 +00:00
webpage = self . _download_webpage ( url , video_id )
2014-02-23 17:28:22 +00:00
2015-02-02 22:04:39 +00:00
video_uploader = self . _html_search_regex (
r ' Posted \ sby \ s<a \ shref= " [A-Za-z0-9/]* " >(?P<uploader>[A-Za-z]*) \ s</a> ' ,
webpage , ' uploader ' , fatal = False )
video_upload_date = unified_strdate ( self . _html_search_regex (
r ' <span style= " text-transform:uppercase; font-size:inherit; " >[A-Za-z]+, (?P<date>.*)</span> ' ,
webpage , ' date ' , fatal = False ) )
2016-11-28 16:17:56 +00:00
jwplatform_url = JWPlatformIE . _extract_url ( webpage )
2014-02-23 17:28:22 +00:00
return {
2016-04-25 15:49:12 +00:00
' _type ' : ' url_transparent ' ,
2014-02-23 17:28:22 +00:00
' id ' : video_id ,
2016-11-28 16:17:56 +00:00
' url ' : jwplatform_url ,
' ie_key ' : JWPlatformIE . ie_key ( ) ,
2014-02-23 17:28:22 +00:00
' title ' : self . _og_search_title ( webpage ) ,
' description ' : self . _og_search_description ( webpage ) ,
' thumbnail ' : self . _og_search_thumbnail ( webpage ) ,
' uploader ' : video_uploader ,
' upload_date ' : video_upload_date ,
}