开发一个从磁力链取得影片截图的命令行工具
开发了一个不需要下载磁力链里的整个影片,可以对磁力链(或种子)里面的影片进行截图的Node命令行工具。我们来聊聊相关的技术点吧。
日常,一个经常性遇到的问题就是:有个种子(或磁力链)摆在你面前,要先下载后才能知道里面到底影片是什么,是X老师的新作,还是葫芦娃...
v9: 从磁力链取得影片截图的命令行工具
解决方案通常是迅雷下载加预览播放,不过我们都是技术人,用一些技术的手段来解决吧。
所以我开发了v9
—— 叫这个名字是因为足够的短,并且我们只要截9张图。
- NPM库地址:www.npmjs.com/package/v9
- Github源码地址:github.com/SpeedPHP/v9
v9
的开发思路:首先我们知道ffmpeg是从视频里面截图的不二之选,所以问题是如何将磁力链变成视频呢?然后是使用ffmpeg截图的一些小问题;最后,这是命令行工具,也要关注一些命令行上使用的体验。
下面展开说说相关的技术点:
WebTorrent 基于磁力链的HTTP服务
WebTorrent 是一个可以将磁力链(或种子)解析并且进行下载预览,支持range的HTTP服务。这里的关键是支持range
,也就是支持检索到影片的特定位置来进行下载播放。
WebTorrent的使用比较简单,只要对它设置好种子或者磁力链,开启服务监听端口即可。
var WebTorrent = require("webtorrent");
var client = new WebTorrent();
client.add(torrentId, function (torrent) {
var server = torrent.createServer();
server.listen(3003);
logger.info("Torrent checked OK...");
process.on('SIGINT', function () {
console.log('Got a SIGINT. Ready to exit, Bye!');
server.close();
client.destroy();
process.exit(0);
});
});
上面的torrentId
是种子的地址或者磁力链地址。
FFMPEG 截取视频图片
在v9
的开始阶段,会通过ffprobe来取得影片的时长,命令如下:
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 http://127.0.0.1:3003/1/Big%20Buck%20Bunny.mp4
ffprobe可以对影片的各种属性进行比较简单的输出,通过以上的配置,可以限定了上面的命令只返回duration
,也就是影片时长的数值,方便在程序里面获取。v9
程序里面,对时长进行了简单的一个步长的处理,这是因为最后截取的一张图,不能在影片的最后,不然会出现问题。
var step = (parseInt(duration) - 20) / 8;
然后是关键的FFMPEG截取影片的命令:
ffmpeg -ss 613 -i "http://127.0.0.1:3003/1/Big%20Buck%20Bunny.mp4" -t 10 -filter_complex "select=eq(pict_type\,I)[out];[out]scale=-2:360" -f image2 -vframes 1 -an -y /Users/code/v9/2-mp4-00.10.13.jpg
-ss
参数是位移,从-i
输入的URL上面位移一些时长来获取-t 10
10秒钟的视频。
中间的-filter_complex "select=eq(pict_type\,I)[out];[out]scale=-2:360"
,是个小技巧:就是通过过滤器来选择10秒内的I帧
进行截取,这样就不会截取到模糊的过渡帧。
使用 commander 装饰命令行
接下来是对于命令行程序的使用体验,我们想要成和其他的命令工具一样,有-v
,--help
等友好且专(zhuang)业(13)的提示。这里v9
用了commander
这个库。
program
.version(require('./package.json').version)
.description(require('./package.json').description)
.option('-d, --dir <string>', 'The output directory', process.cwd())
.arguments('<magnetURI>')
.action(function (magnetURI) {
infile = magnetURI
});
program.on('--help', function () {
console.log('');
console.log(' Examples:');
console.log('');
console.log(" $ v9 'magnet:?xt=urn:btih:dd8255ecdc7ca55fb0bbf81323d87062db1f6d1c'");
console.log(' $ v9 -d ' + process.cwd() + " 'magnet:?xt=urn:btih:209c8226b299b308beaf2b9cd3fb49212dbd13ec'");
console.log(' $ v9 ' + process.cwd() + path.sep + 'free_torrents' + path.sep + 'sintel.torrent');
});
program.parse(process.argv);
上面一部分是输入参数,支持输入可选的路径和磁力链地址(种子地址)的参数。而下面是--help
的显示,效果是:
v9 --help
Usage: v9 [options] <magnetURI>
Capture the nine screenshots for video in the magnetURI or torrent, without download.
Options:
-V, --version output the version number
-d, --dir <string> The output directory (default: "/Users/code/v9")
-h, --help display help for command
Examples:
$ v9 'magnet:?xt=urn:btih:dd8255ecdc7ca55fb0bbf81323d87062db1f6d1c'
$ v9 -d /Users/code/v9'magnet:?xt=urn:btih:209c8226b299b308beaf2b9cd3fb49212dbd13ec'
$ v9 /Users/code/v9/free_torrents/sintel.torrent
改良成无需提前下载FFMPEG
v9
在之前的版本里面是需要提前安装ffmpeg到命令行的,这样挺没趣的,因为能装ffmpeg的用户,还会缺少处理磁力链的手段吗?
所以现在的v9
新版本,加入了自动安装ffmpeg的库,这样就能真正的不需要依赖用户提前安装ffmpeg,更像是一个专(zhuang)业(13)的工具了。
主要是以下两个库的功劳:
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1"
v9的效果
以下是实验v9包内free_torrents目录里big-buck-bunny.torrent种子文件的效果:
v9 big-buck-bunny.mp4
[INFO] 23:19:46 Starting, please wait...
[INFO] 23:19:55 Torrent checked OK...
[INFO] 23:19:55 Found media: 263.34MB; Big Buck Bunny.mp4
[INFO] 23:19:57 Got 1 screenshot, total is 9, continue...
[INFO] 23:19:57 Got 2 screenshot, total is 9, continue...
[INFO] 23:19:57 Got 3 screenshot, total is 9, continue...
[INFO] 23:19:57 Got 4 screenshot, total is 9, continue...
[INFO] 23:19:57 Got 5 screenshot, total is 9, continue...
[INFO] 23:19:57 Got 6 screenshot, total is 9, continue...
[INFO] 23:19:57 Got 7 screenshot, total is 9, continue...
[INFO] 23:19:58 Got 8 screenshot, total is 9, continue...
[INFO] 23:19:58 Got 9 screenshot, total is 9, continue...
[INFO] 23:19:58 Completed the file Big Buck Bunny.mp4
[INFO] 23:19:58 Finished capture 9 screenshot!
[INFO] 23:19:58 Please check the output directory '/Users/code/v9' to see the screenshots. Bye!
因为是示范的种子,下载速度并不快,所以需要耗时3分钟左右的时间,v9截取到了以下图片。
另外,还有之前对磁力链的测试结果:
v9 'magnet:?xt=urn:btih:c180f298d2516fcb7ac89a462798e4267ebb5c33'
转载自:https://juejin.cn/post/7121541555801817118