This commit is contained in:
qist
2023-09-08 14:14:23 +08:00
parent 93dfe4a1a2
commit 49af39d2c0
29 changed files with 171 additions and 119 deletions
-36
View File
@@ -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);
}