Merge branch 'tumblr_hd_videos' of Self-Perfection/tt-rss into master
This commit is contained in:
commit
331ded21ba
1 changed files with 14 additions and 1 deletions
|
@ -4,7 +4,7 @@ class Af_Tumblr_1280 extends Plugin {
|
||||||
|
|
||||||
function about() {
|
function about() {
|
||||||
return array(1.0,
|
return array(1.0,
|
||||||
"Replace Tumblr pictures with largest size if available (requires CURL)",
|
"Replace Tumblr pictures and videos with largest size if available (requires CURL)",
|
||||||
"fox");
|
"fox");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,6 +64,19 @@ class Af_Tumblr_1280 extends Plugin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$video_sources = $xpath->query('//video/source[contains(@src, \'.tumblr.com/video_file\')]');
|
||||||
|
|
||||||
|
foreach ($video_sources as $source) {
|
||||||
|
$src = $source->getAttribute("src");
|
||||||
|
|
||||||
|
$new_src = preg_replace("/\/\d{3}$/", "", $src);
|
||||||
|
|
||||||
|
if ($src != $new_src) {
|
||||||
|
$source->setAttribute("src", $new_src);
|
||||||
|
$found = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($found) {
|
if ($found) {
|
||||||
$doc->removeChild($doc->firstChild); //remove doctype
|
$doc->removeChild($doc->firstChild); //remove doctype
|
||||||
$article["content"] = $doc->saveHTML();
|
$article["content"] = $doc->saveHTML();
|
||||||
|
|
Loading…
Reference in a new issue