-
iptv-checker-module用于检测.m3u播放列表文件中IPTV频道的连接状况
资源介绍
IPTV检查器模块
验证.m3u播放列表中IPTV频道链接的模块。
要求
此工具需要ffmpeg库,因此您需要在设备上安装它。
您可以在找到。
例子
const { readFileSync } = require ( 'fs' )
const iptvChecker = require ( 'iptv-checker-module' )
const opts = {
timeout : 5000 ,
parallel : 2 ,
}
// Example with path to local playlist file
iptvChecker ( '/home/foo/playlist.m3u' , opts )
// Example with playlist URL
iptvChecker ( 'http://127.0.0.1/example/playlist.m3u'