1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

vidrw: more permissive flash video rewriting: consider any <object> with flashvars, attempt any youtube-dl playlist

bump version to 0.32.2
This commit is contained in:
Ilya Kreymer 2016-09-21 11:37:31 -07:00
parent 64cd408de4
commit 98e8a75920
3 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,4 @@
PyWb 0.32.1
PyWb 0.32.2
===========
.. image:: https://travis-ci.org/ikreymer/pywb.svg?branch=master

View File

@ -1,4 +1,4 @@
__version__ = '0.32.1'
__version__ = '0.32.2'
DEFAULT_CONFIG = 'pywb/default_config.yaml'

View File

@ -192,10 +192,9 @@ __wbvidrw = (function() {
});
}
if (wbinfo.url.indexOf("livestream") >= 0) {
obj_url = wbinfo.url;
}
//if (wbinfo.url.indexOf("livestream") >= 0) {
obj_url = wbinfo.url;
//}
}
}
}
@ -364,7 +363,7 @@ __wbvidrw = (function() {
return;
}
if (videoinfo._type == "playlist" && videoinfo.extractor == "livestream") {
if (videoinfo._type == "playlist") {
if (videoinfo.entries && videoinfo.entries.length > 0) {
do_replace_video(elem, videoinfo.entries[0]);
return;