Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
更新源
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanHsing committed Feb 14, 2024
1 parent 5159e1e commit 8e5c4d3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
21 changes: 20 additions & 1 deletion js/88看球.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,26 @@ var rule = {
},
timeout: 5000,
play_parse: true,
lazy: "",
pagecount:{"1":1,"2":1,"4":1,"22":1,"8":1,"9":1,"10":1,"14":1,"15":1,"12":1,"13":1,"16":1,"28":1,"7":1,"11":1,"33":1,"27":1,"23":1,"26":1,"3":1,"21":1,"18":1},
lazy: `js:
if(/embed=/.test(input)) {
let url = input.match(/embed=(.*?)&/)[1];
url = base64Decode(url);
input = {
jx:0,
url: url.split('#')[0],
parse: 0
}
} else if (/\\?url=/.test(input)){
input = {
jx:0,
url: input.split('?url=')[1].split('#')[0],
parse: 0
}
} else {
input
}
`,
limit: 6,
double: false,
推荐: "*",
Expand Down
2 changes: 1 addition & 1 deletion js/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.49beta35
3.9.49beta36
9 changes: 5 additions & 4 deletions js/独播库[飞].js
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,15 @@
url = url.substring(8, (url.length) - 8)
}
if (/\\.m3u8|\\.mp4/.test(url)) {
var sign = request(HOST + '/static/player/' + from + '.php').match(/PlayUrl\\+'(.*?)'/)[1];
// var sign = request(HOST + '/static/player/' + from + '.php').match(/PlayUrl\\+'(.*?)'/)[1];
input = {
jx: 0,
url: url+sign,
// url: url+sign,
url: url,
parse: 0,
header: JSON.stringify({
"referer": HOST,
// 'referer': HOST + "/static/player/vidjs.html",
// "referer": HOST,
'referer': HOST + "/static/player/vidjs.html",
}),
}
} else {
Expand Down

0 comments on commit 8e5c4d3

Please sign in to comment.