forked from xifangczy/cat-catch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm3u8.html
57 lines (52 loc) · 1.77 KB
/
m3u8.html
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
<html>
<head>
<title>猫抓 m3u8解析</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/options.css" media="all" />
</head>
<body>
<div id="wrapper">
<header>猫抓 m3u8解析</header>
<table id="options">
<tbody>
<tr id="textarea">
<td id="mappingsHelp">
<div id="m3u8_url"></div>
<br />
<div>共<div id="num" class="inline"></div>个文件<div id="key" class="inline"></div></div>
<div class="help">
<div class="example">
m3u8解析功能测试中
<br />
发现BUG请提交在扩展页评论...
<br />
如遇到解析出的ts文件无法下载,请尝试UrlDecode解码
</div>
</div>
<textarea rows="20" cols="100" id="html"></textarea>
</td>
</tr>
<tr id="next_m3u8_tr" style="display:none">
<td>
<div>选择下一级m3u8文件</div>
<div class="help">
<div class="example">
该m3u8文件中嵌套另外m3u8文件
</div>
</div>
<div id="next_m3u8"></div>
</td>
</tr>
</tbody>
</table>
<button id="DownText">下载文本格式</button>
<button id="Text">文本格式</button>
<button id="Aria2Text">aria2格式</button>
<button id="WgetText">wget格式</button>
<button id="UrlDecode">UrlDecode解码</button>
<button id="Refresh">还原</button>
<div class="ffmpeg">ffmpeg合并ts命令: ffmpeg -i xxx.m3u8 -vcodec copy -acodec copy xxx.mp4</div>
<script src="js/jquery.min.js"></script>
<script src="js/m3u8.js"></script>
</body>
</html>