-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
m3u8-downloader.user.js
358 lines (330 loc) · 12.7 KB
/
m3u8-downloader.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
// ==UserScript==
// @name m3u8-downloader
// @namespace https://github.com/Momo707577045/m3u8-downloader
// @version 0.10.1
// @description https://github.com/Momo707577045/m3u8-downloader 配套插件
// @author Momo707577045
// @include *
// @exclude http://blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html
// @exclude https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html
// @exclude https://www.bilibili.com/*
// @downloadURL https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/m3u8-downloader.user.js
// @updateURL https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/m3u8-downloader.user.js
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
var showMp4 = true
var m3u8Target = ''
var mp4Objs = []
var originXHR = window.XMLHttpRequest
var windowOpen = window.open
function ajax(options) {
options = options || {};
let xhr = new originXHR();
if (options.type === 'file') {
xhr.responseType = 'arraybuffer';
}
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
let status = xhr.status;
if (status >= 200 && status < 300) {
options.success && options.success(xhr.response);
} else {
options.fail && options.fail(status);
}
}
};
xhr.open("GET", options.url, true);
xhr.send(null);
}
// 普通下载
function downloadWithA(url, name) {
const a = document.createElement('a')
a.href = url
a.download = name
a.style.display = 'none'
document.body.appendChild(a)
a.click()
a.remove()
}
// 检测 m3u8 链接的有效性
function checkM3u8Url(url) {
ajax({
url,
success: (fileStr) => {
if (/(png|image|ts|jpg|mp4|jpeg|EXTINF)/.test(fileStr)) {
appendDom()
document.getElementById('m3u8-jump').style.display = 'block'
document.getElementById('m3u8-close').style.display = 'block'
document.getElementById('m3u8-append').style.display = 'block'
const urlObj = new URL(url)
urlObj.searchParams.append('title', getTitle())
m3u8Target = urlObj.href
console.log('【m3u8】----------------------------------------')
console.log(urlObj)
console.log('http://blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html?source=' + m3u8Target)
}
}
})
}
// 定时器,检查 mp4 视频资源
function checkVideo() {
let $videoList = document.getElementsByTagName('video')
for (let i = 0, length = $videoList.length; i < length; i++) {
const url = $videoList[i].currentSrc
if (url.indexOf('.mp4') > 0 && !mp4Objs.find(mp4 => mp4.url === url)) {
appendDom();
document.getElementById('mp4-show').style.display = 'block'
mp4Objs.push({
url,
fileName: url.slice(url.lastIndexOf('/') + 1).split('?')[0],
});
}
}
setTimeout(checkVideo, 3000);
}
function resetAjax() {
if (window._hadResetAjax) { // 如果已经重置过,则不再进入。解决开发时局部刷新导致重新加载问题
return
}
window._hadResetAjax = true
var originOpen = originXHR.prototype.open
window.XMLHttpRequest = function () {
var realXHR = new originXHR()
realXHR.open = function (method, url) {
url.toString() && url.toString().indexOf('.m3u8') > 0 && checkM3u8Url(url.toString())
// if (url.toString() && url.toString().toLocaleLowerCase().indexOf('.mp4') > 0) {
// appendDom();
// document.getElementById('mp4-show').style.display = 'block'
// mp4Objs.push({
// url,
// fileName: url.slice(url.lastIndexOf('/') + 1).split('?')[0],
// });
// }
originOpen.call(realXHR, method, url)
}
return realXHR
}
XMLHttpRequest.UNSENT = 0;
XMLHttpRequest.OPENED = 1;
XMLHttpRequest.HEADERS_RECEIVED = 2;
XMLHttpRequest.LOADING = 3;
XMLHttpRequest.DONE = 4;
}
// 获取顶部 window title,因可能存在跨域问题,故使用 try catch 进行保护
function getTitle() {
let title = document.title;
try {
title = window.top.document.title
} catch (error) {
console.log(error)
}
return title
}
function appendDom() {
if (document.getElementById('m3u8-download-dom')) {
return
}
var domStr = `
<div style="
display: none;
margin-top: 6px;
padding: 6px 10px;
font-size: 18px;
color: white;
cursor: pointer;
border-radius: 4px;
border: 1px solid #eeeeee;
background-color: #3D8AC7;
" id="mp4-show">MP4下载</div>
<div style="
display: none;
margin-top: 6px;
padding: 6px 10px ;
font-size: 18px;
color: white;
cursor: pointer;
border-radius: 4px;
border: 1px solid #eeeeee;
background-color: #3D8AC7;
" id="m3u8-jump">跳转下载</div>
<div style="
display: none;
margin-top: 6px;
padding: 6px 10px ;
font-size: 18px;
color: white;
cursor: pointer;
border-radius: 4px;
border: 1px solid #eeeeee;
background-color: #3D8AC7;
" id="m3u8-append">注入下载</div>
<div style="
margin-top: 4px;
height: 34px;
width: 34px;
line-height: 34px;
display: inline-block;
border-radius: 50px;
background-color: rgba(0, 0, 0, 0.5);
" id="m3u8-close">
<img style="
padding-top: 4px;
width: 24px;
cursor: pointer;
" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAk1BMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ROyVeAAAAMHRSTlMA1Sq7gPribxkJx6Ey8onMsq+GTe10QF8kqJl5WEcvIBDc0sHAkkk1FgO2ZZ+dj1FHfPqwAAACNElEQVRIx6VW6ZqqMAwtFlEW2Rm3EXEfdZa+/9PdBEvbIVXu9835oW1yjiQlTWQE/iYPuTObOTzMNz4bQFRlY2FgnFXRC/o01mytiafP+BPvQZk56bcLSOXem1jpCy4QgXvRtlEVCARfUP65RM/hp29/+0R7eSbhoHlnffZ8h76e6x1tyw9mxXaJ3nfTVLd89hQr9NfGceJxfLIXmONh6eNNYftNSESRmgkHlEOjmhgBbYcEW08FFQN/ro6dvAczjhgXEdQP76xHEYxM+igQq259gLrCSlwbD3iDtTMy+A4Yuk0B6zV8c+BcO2OgFIp/UvJdG4o/Rp1JQYXeZFflPEFMfvugiFGFXN587YtgX7C8lRGFXPCGGYCCzlkoxJ4xqmi/jrIcdYYh5pwxiwI/gt7lDDFrcLiMKhBJ//W78ENsJgVUsV8wKpjZBXshM6cCW0jbRAilICFxIpgGMmmiWGHSIR6ViY+DPFaqSJCbQ5mbxoZLIlU0Al/cBj6N1uXfFI0okLppi69StmumSFQRP6oIKDedFi3vRDn3j6KozCZlu0DdJb3AupJXNLmqkk9+X9FEHLt1Jq8oi1H5n01AtRlvwQZQl9hmtPY4JEjMDs5ftWJN4Xr4lLrV2OHiUDHCPgvA/Tn/hP4zGUBfjZ3eLJ+NIOfHxi8CMoAQtYfmw93v01O0e7VlqqcCsXML3Vsu94cxnb4c7ML5chG8JIP9b38dENGaj3+x+TpiA/AL/fen8In7H8l3ZjdJQt2TAAAAAElFTkSuQmCC">
</div>
`
var $section = document.createElement('section')
$section.id = 'm3u8-download-dom'
$section.style.position = 'fixed'
$section.style.zIndex = '9999'
$section.style.bottom = '20px'
$section.style.right = '20px'
$section.style.textAlign = 'center'
$section.innerHTML = domStr
document.body.appendChild($section);
var mp4Show = document.getElementById('mp4-show')
var m3u8Jump = document.getElementById('m3u8-jump')
var m3u8Close = document.getElementById('m3u8-close')
var m3u8Append = document.getElementById('m3u8-append')
mp4Show.addEventListener('click', function () {
showMp4 = !showMp4
mp4Show.innerHTML = showMp4 ? 'MP4下载' : '关闭MP4'
switchMp4Download();
})
m3u8Close.addEventListener('click', function () {
$section.remove()
})
m3u8Jump.addEventListener('click', function () {
windowOpen('//blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html?source=' + m3u8Target)
})
m3u8Append.addEventListener('click', function () {
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?1f12b0865d866ae1b93514870d93ce89";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
ajax({
url: 'https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html',
success: (fileStr) => {
let fileList = fileStr.split(`<!--vue 前端框架--\>`);
let dom = fileList[0];
let script = fileList[1] + fileList[2];
script = script.split('// script注入');
script = script[1] + script[2];
if (m3u8Target) {
script = script.replace(`url: '', // 在线链接`, `url: '${m3u8Target}',`);
}
// 注入html
let $section = document.createElement('section')
$section.innerHTML = `${dom}`
$section.style.width = '100%'
$section.style.height = '100%'
$section.style.maxHeight = '800px'
$section.style.bottom = '0'
$section.style.left = '0'
$section.style.position = 'absolute'
$section.style.zIndex = '9999'
$section.style.fontSize = '14px'
$section.style.overflowY = 'auto'
$section.style.backgroundColor = 'white'
document.body.appendChild($section);
ajax({ // 加载 ASE 解密
url: 'https://upyun.luckly-mjw.cn/lib/stream-saver.js',
success: (streamSaverStr) => {
let $streamSaver = document.createElement('script')
$streamSaver.innerHTML = streamSaverStr
document.body.appendChild($streamSaver);
ajax({ // 加载 mp4 转码
url: 'https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/mux-mp4.js',
success: (mp4Str) => {
let $mp4 = document.createElement('script')
$mp4.innerHTML = mp4Str
document.body.appendChild($mp4);
ajax({ // 加载 stream 流式下载器
url: 'https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/aes-decryptor.js',
success: (aseStr) => {
let $ase = document.createElement('script')
$ase.innerHTML = aseStr
document.body.appendChild($ase);
ajax({ // 加载 vue
url: 'https://upyun.luckly-mjw.cn/lib/vue.js',
success: (vueStr) => {
let $vue = document.createElement('script')
$vue.innerHTML = vueStr
document.body.appendChild($vue);
alert('注入成功,请滚动到页面底部')
eval(script)
}
})
}
})
}
})
}
})
// // 加载 ASE 解密
// let $ase = document.createElement('script')
// $ase.src = 'https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/aes-decryptor.js'
// // 加载 mp4 转码
// let $mp4 = document.createElement('script')
// $mp4.src = 'https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/mux-mp4.js'
// // 加载 vue
// let $vue = document.createElement('script')
// $vue.src = 'https://upyun.luckly-mjw.cn/lib/vue.js'
// // 加载 stream 流式下载器
// let $streamSaver = document.createElement('script')
// $streamSaver.src = 'https://upyun.luckly-mjw.cn/lib/stream-saver.js'
// // 监听 vue 加载完成,执行业务代码
// $vue.addEventListener('load', function () { eval(script) })
// document.body.appendChild($streamSaver);
// document.body.appendChild($mp4);
// document.body.appendChild($ase);
// document.body.appendChild($vue);
// alert('注入成功,请滚动到页面底部')
},
})
})
}
function switchMp4Download() {
// 切换显示
if (document.getElementById('mp4-download-dom')) {
document.getElementById('mp4-download-dom').remove();
return
}
var $section = document.createElement('section')
$section.id = 'mp4-download-dom'
$section.style.position = 'fixed'
$section.style.zIndex = '9999'
$section.style.top = '20px'
$section.style.right = '20px'
$section.style.textAlign = 'center'
mp4Objs.forEach(obj => {
var $mp4 = document.createElement('div')
$mp4.innerHTML = obj.fileName
$mp4.title = obj.url
$mp4.style = `
margin-top: 4px;
padding: 3px 4px ;
font-size: 12px;
color: white;
cursor: pointer;
border-radius: 2px;
border: 1px solid #eeeeee;
background-color: #3D8AC7;
`
$mp4.addEventListener('click', () => {
downloadWithA(obj.url, obj.fileName);
})
$section.appendChild($mp4);
})
document.body.appendChild($section);
}
resetAjax()
checkVideo()
})();