fix
This commit is contained in:
-36
@@ -181,42 +181,6 @@ d.forEach(function(it){
|
||||
liste.push(loopresult);
|
||||
}
|
||||
});
|
||||
if (false){
|
||||
d = pdfa(html, 'div:has(>div#post_content) div.widget:has(>h3)');
|
||||
d.forEach(function(it){
|
||||
let index = pdfh(it, 'h3&&Text');
|
||||
let burl = pd(it, 'a&&href', HOST);
|
||||
let title = pdfh(it, 'a&&Text');
|
||||
log('xb6v title >>>>>>>>>>>>>>>>>>>>>>>>>>' + title);
|
||||
log('xb6v burl >>>>>>>>>>>>>>>>>>>>>>>>>>' + burl);
|
||||
let m3u8_html = request(burl);
|
||||
let playerUrl = pd(m3u8_html, 'div.video&&iframe&&src', HOST);
|
||||
log('xb6v playerUrl >>>>>>>>>>>>>>>>>>>>>>>>>>' + playerUrl);
|
||||
if (!listm3u8.hasOwnProperty(index)){
|
||||
listm3u8[index] = [];
|
||||
}
|
||||
let loopresult = title + '$' + ' ';
|
||||
if (/(\\/player\\/|\\/share\\/)/.test(playerUrl)){
|
||||
let player_html = request(playerUrl);
|
||||
let m3u8Url="";
|
||||
try{
|
||||
m3u8Url = player_html.match(/'([^']*.m3u8)'/)[1];
|
||||
}catch(e){
|
||||
try{
|
||||
m3u8Url = player_html.match(/"([^"]*.m3u8)"/)[1];
|
||||
}catch(e){
|
||||
m3u8Url = "";
|
||||
}
|
||||
}
|
||||
if (m3u8Url !== ""){
|
||||
m3u8Url = urljoin2(playerUrl, m3u8Url);
|
||||
log('xb6v m3u8Url >>>>>>>>>>>>>>>>>>>>>>>>>>' + m3u8Url);
|
||||
loopresult = title + '$' + m3u8Url;
|
||||
}
|
||||
}
|
||||
listm3u8[index].push(loopresult);
|
||||
});
|
||||
}
|
||||
if (listm.length>0){
|
||||
LISTS.push(listm);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user