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:
parent
64cd408de4
commit
98e8a75920
@ -1,4 +1,4 @@
|
||||
PyWb 0.32.1
|
||||
PyWb 0.32.2
|
||||
===========
|
||||
|
||||
.. image:: https://travis-ci.org/ikreymer/pywb.svg?branch=master
|
||||
|
@ -1,4 +1,4 @@
|
||||
__version__ = '0.32.1'
|
||||
__version__ = '0.32.2'
|
||||
|
||||
DEFAULT_CONFIG = 'pywb/default_config.yaml'
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user