一、需求背景和研究动力
很多热播的电视剧或者电影在很多影视网站上会有资源,而且这些网站都会支持在线播放。
但是很少有网站提供下载功能,或者下载功能需要收费。
经过不懈努力,研究出来一套实用方法,基本能搞定90%的资源
二、三种下载方法思路
使用
you-get
解决方案使用
ffmpeg
解决方案使用
chrome
插件FVD
或者FVD Plus
(推荐这个插件)
三、具体实践
目前几乎所有在线网站的播放模式都是将影视资源切个成N多个.ts
文件
实现下载的思路其实就是将所有的.ts
文件全部下载然后合并成一个MP4
文件或者别的格式的问题,能够本地正常播放就行
所以FVD
这个插件几乎能搞定80%站点的下载,如果遇到FVD无法搞定的资源,可以使用以下方法选择you-get
或者ffmpeg
其中的任何一个工具
打开视频播放页,鼠标右键,查看源码,
Ctrl + F5
搜索m3u8
关键字,这是所有.ts
文件的列表,复制这个m3u8
文件所在的地址-
使用以下任意命令就能下载
注意:使用
you-get
时要用双引号包裹URL<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="shell" cid="n86" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 0px; width: inherit;">you-get "xxx.com/m3u8"</pre>
<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="shell" cid="n93" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 0px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">ffmpeg -i xxx.com/m3u8</pre>