2015-01-30 23:53:58 +09:00
# coding: utf-8
2014-03-25 07:21:20 +09:00
from __future__ import unicode_literals
import re
from . common import InfoExtractor
class WashingtonPostIE ( InfoExtractor ) :
2016-05-23 08:47:22 +09:00
IE_NAME = ' washingtonpost '
2021-01-01 07:31:07 +09:00
_VALID_URL = r ' (?:washingtonpost:|https?://(?:www \ .)?washingtonpost \ .com/(?:video|posttv)/(?:[^/]+/)*)(?P<id>[ \ da-f] {8} -[ \ da-f] {4} -[ \ da-f] {4} -[ \ da-f] {4} -[ \ da-f] {12} ) '
2017-04-30 03:15:28 +09:00
_EMBED_URL = r ' https?://(?:www \ .)?washingtonpost \ .com/video/c/embed/[ \ da-f] {8} -[ \ da-f] {4} -[ \ da-f] {4} -[ \ da-f] {4} -[ \ da-f] {12} '
2021-01-01 07:31:07 +09:00
_TESTS = [ {
2016-05-23 08:47:22 +09:00
' url ' : ' https://www.washingtonpost.com/video/c/video/480ba4ee-1ec7-11e6-82c2-a7dcb313287d ' ,
' md5 ' : ' 6f537e1334b714eb15f9563bd4b9cdfa ' ,
' info_dict ' : {
' id ' : ' 480ba4ee-1ec7-11e6-82c2-a7dcb313287d ' ,
' ext ' : ' mp4 ' ,
' title ' : ' Egypt finds belongings, debris from plane crash ' ,
' description ' : ' md5:a17ceee432f215a5371388c1f680bd86 ' ,
' upload_date ' : ' 20160520 ' ,
2021-01-01 07:31:07 +09:00
' timestamp ' : 1463775187 ,
2016-05-23 08:47:22 +09:00
} ,
2021-01-01 07:31:07 +09:00
} , {
' url ' : ' https://www.washingtonpost.com/video/world/egypt-finds-belongings-debris-from-plane-crash/2016/05/20/480ba4ee-1ec7-11e6-82c2-a7dcb313287d_video.html ' ,
' only_matching ' : True ,
} , {
' url ' : ' https://www.washingtonpost.com/posttv/world/iraq-to-track-down-antiquities-after-islamic-state-museum-rampage/2015/02/28/7c57e916-bf86-11e4-9dfb-03366e719af8_video.html ' ,
' only_matching ' : True ,
} ]
2016-05-23 08:47:22 +09:00
2017-04-10 14:09:10 +09:00
@classmethod
def _extract_urls ( cls , webpage ) :
return re . findall (
r ' <iframe[^>]+ \ bsrc=[ " \' ]( %s ) ' % cls . _EMBED_URL , webpage )
2016-05-23 08:47:22 +09:00
def _real_extract ( self , url ) :
video_id = self . _match_id ( url )
2021-01-01 07:31:07 +09:00
return self . url_result (
' arcpublishing:wapo: ' + video_id , ' ArcPublishing ' , video_id )
2016-05-23 08:47:22 +09:00
class WashingtonPostArticleIE ( InfoExtractor ) :
IE_NAME = ' washingtonpost:article '
_VALID_URL = r ' https?://(?:www \ .)?washingtonpost \ .com/(?:[^/]+/)*(?P<id>[^/?#]+) '
2015-01-30 23:53:58 +09:00
_TESTS = [ {
2014-03-25 07:21:20 +09:00
' url ' : ' http://www.washingtonpost.com/sf/national/2014/03/22/sinkhole-of-bureaucracy/ ' ,
2014-09-04 21:34:40 +09:00
' info_dict ' : {
2015-01-30 23:53:58 +09:00
' id ' : ' sinkhole-of-bureaucracy ' ,
2014-09-04 21:34:40 +09:00
' title ' : ' Sinkhole of bureaucracy ' ,
} ,
2014-03-25 07:21:20 +09:00
' playlist ' : [ {
2015-09-09 04:40:23 +09:00
' md5 ' : ' b9be794ceb56c7267d410a13f99d801a ' ,
2014-03-25 07:21:20 +09:00
' info_dict ' : {
' id ' : ' fc433c38-b146-11e3-b8b3-44b1d1cd4c1f ' ,
' ext ' : ' mp4 ' ,
' title ' : ' Breaking Points: The Paper Mine ' ,
2015-09-09 04:40:23 +09:00
' duration ' : 1290 ,
2014-03-25 07:21:20 +09:00
' description ' : ' Overly complicated paper pushing is nothing new to government bureaucracy. But the way federal retirement applications are filed may be the most outdated. David Fahrenthold explains. ' ,
2021-01-01 07:31:07 +09:00
' timestamp ' : 1395440416 ,
' upload_date ' : ' 20140321 ' ,
2014-03-25 07:21:20 +09:00
} ,
} , {
2015-09-09 04:40:23 +09:00
' md5 ' : ' 1fff6a689d8770966df78c8cb6c8c17c ' ,
2014-03-25 07:21:20 +09:00
' info_dict ' : {
' id ' : ' 41255e28-b14a-11e3-b8b3-44b1d1cd4c1f ' ,
' ext ' : ' mp4 ' ,
' title ' : ' The town bureaucracy sustains ' ,
' description ' : ' Underneath the friendly town of Boyers is a sea of government paperwork. In a disused limestone mine, hundreds of locals now track, file and process retirement applications for the federal government. We set out to find out what it \' s like to do paperwork 230 feet underground. ' ,
2015-09-09 04:40:23 +09:00
' duration ' : 2220 ,
2021-01-01 07:31:07 +09:00
' timestamp ' : 1395441819 ,
' upload_date ' : ' 20140321 ' ,
2014-03-25 07:21:20 +09:00
} ,
2015-01-30 23:53:58 +09:00
} ] ,
} , {
' url ' : ' http://www.washingtonpost.com/blogs/wonkblog/wp/2014/12/31/one-airline-figured-out-how-to-make-sure-its-airplanes-never-disappear/ ' ,
' info_dict ' : {
' id ' : ' one-airline-figured-out-how-to-make-sure-its-airplanes-never-disappear ' ,
' title ' : ' One airline figured out how to make sure its airplanes never disappear ' ,
} ,
' playlist ' : [ {
' md5 ' : ' a7c1b5634ba5e57a6a82cdffa5b1e0d0 ' ,
' info_dict ' : {
' id ' : ' 0e4bb54c-9065-11e4-a66f-0ca5037a597d ' ,
' ext ' : ' mp4 ' ,
' description ' : ' Washington Post transportation reporter Ashley Halsey III explains why a plane \' s black box needs to be recovered from a crash site instead of having its information streamed in real time throughout the flight. ' ,
' upload_date ' : ' 20141230 ' ,
2021-01-01 07:31:07 +09:00
' timestamp ' : 1419972442 ,
2015-01-30 23:53:58 +09:00
' title ' : ' Why black boxes don’ t transmit data in real time ' ,
}
2014-03-25 07:21:20 +09:00
} ]
2015-01-30 23:53:58 +09:00
} ]
2014-03-25 07:21:20 +09:00
2016-05-23 08:47:22 +09:00
@classmethod
def suitable ( cls , url ) :
return False if WashingtonPostIE . suitable ( url ) else super ( WashingtonPostArticleIE , cls ) . suitable ( url )
2014-03-25 07:21:20 +09:00
def _real_extract ( self , url ) :
2015-01-07 19:21:40 +09:00
page_id = self . _match_id ( url )
2014-03-25 07:21:20 +09:00
webpage = self . _download_webpage ( url , page_id )
2015-01-07 19:21:40 +09:00
2014-03-25 07:21:20 +09:00
title = self . _og_search_title ( webpage )
2015-01-30 23:53:58 +09:00
uuids = re . findall ( r ''' (?x)
( ? :
< div \s + class = " posttv-video-embed[^>]*?data-uuid=|
data - video - uuid =
) " ([^ " ] + ) " ' ' ' , webpage)
2016-05-23 08:47:22 +09:00
entries = [ self . url_result ( ' washingtonpost: %s ' % uuid , ' WashingtonPost ' , uuid ) for uuid in uuids ]
2014-03-25 07:21:20 +09:00
return {
' _type ' : ' playlist ' ,
' entries ' : entries ,
' id ' : page_id ,
' title ' : title ,
}