npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@shudazhang/node-down-m3u8

v0.0.5

Published

nodejs下载m3u8文件并合并为mp4

Downloads

4

Readme

node-down-m3u8

nodejs下载m3u8文件并合并为mp4

环境要求

>=Node.js v10.12.0

使用了v10.12.0以上的版本 fs.mkdirSync(dirPath, { recursive: true });  

安装 ffmpeg,环境变量配置好ffmpeg路径

引入使用

使用实例
    npm install @shudazhang/node-down-m3u8
    const downloadFile = require('@shudazhang/node-down-m3u8')

    或者
    const downloadFile = require('./node-down-m3u8.js');

    downloadFile({
        href: "http://***.***.***.***/index.m3u8",
        fileName: "test.mp4",
    }).then(() => {
        console.log("下载完成");
    })
    .catch((error) => {
        console.log("下载失败");
    });

参数说明
    href: 下载文件的URL。
    headers: HTTP请求头。如:{Cookie: 'xxx', 'User-Agent': 'xxx'}
    timeout: 请求超时时间。默认:60 * 1000(毫秒)
    poolCount: 并发下载线程数。默认:5
    retry: 每个分片的重试次数。默认:10
    fileName: 下载文件的名称。默认:下载文件的URL的文件名。
    fileDir: 下载文件保存的目录。默认:当前目录
    cacheDir: 缓存文件保存的目录。默认:当前目录/URL的文件名。
    cacheDbName: 缓存数据库的名称。默认:00.json
    isCache: 是否使用缓存。默认:true, 可选[true,false]
    oldM3u8FileName: 内容与线上内容一致
    newM3u8FileName: 内容改为网络连接
    localM3u8FileName: 内容改为本地连接
    isWriteLog: 是否记录日志。默认:true, 可选[true,false]
    logDir: 日志文件保存的目录。默认:当前目录/log
    logFileName: 日志文件的名称。默认:log.txt
    isConsole: 是否在控制台输出日志。默认:true, 可选[true,false]
    onProgress: 下载进度回调函数。返回:[{index: 序号,href:下载地址,status: 状态(init:初始化,starting:开始下载,finish:下载完成)}]
    ffmpegPath: ffmpeg路径。默认为系统路径, 如:["D:\\software\\ffmpeg\\bin\\ffmpeg.exe"]

命令行参数

使用实例
    node ./node-down-m3u8.js --href=http://***.***.***.***/index.m3u8 --fileName=test.mp4,

参数说明
    --href: 下载文件的URL。
    --headers: HTTP请求头。如:{Cookie: 'xxx', 'User-Agent': 'xxx'}
    --timeout: 请求超时时间。默认:60 * 1000(毫秒)
    --poolCount: 并发下载线程数。默认:5
    --retry: 每个分片的重试次数。默认:10
    --fileName: 下载文件的名称。默认:下载文件的URL的文件名。
    --fileDir: 下载文件保存的目录。默认:当前目录
    --cacheDir: 缓存文件保存的目录。默认:当前目录/URL的文件名。
    --cacheDbName: 缓存数据库的名称。默认:00.json
    --isCache: 是否使用缓存。默认:true, 可选[true,false]
    --oldM3u8FileName: 内容与线上内容一致
    --newM3u8FileName: 内容改为网络连接
    --localM3u8FileName: 内容改为本地连接
    --isWriteLog: 是否记录日志。默认:true, 可选[true,false]
    --logDir: 日志文件保存的目录。默认:当前目录/log
    --logFileName: 日志文件的名称。默认:log.txt
    --isConsole: 是否在控制台输出日志。默认:true, 可选[true,false]
    --onProgress: 下载进度回调函数。返回:[{index: 序号,href:下载地址,status: 状态(init:初始化,starting:开始下载,finish:下载完成)}]
    --ffmpegPath ffmpeg路径。默认为系统路径, 如:["D:\\software\\ffmpeg\\bin\\ffmpeg.exe"]

功能介绍

[√] 自定义headers
[√] 超时时间
[√] 线程数
[√] 下载路径
[√] 下载文件名
[√] 缓存目录
[√] 缓存数据文件名
[√] 是否使用缓存
[√] 是否记录日志
[√] 日志文件保存的目录
[√] 日志文件的名称
[√] 是否在控制台输出日志
[√] 错误处理回调函数
[√] 下载成功回调函数
[√] 下载进度回调函数
[√] 输出MP4文件
[√] ffmpeg路径可配置

版本更新

v0.0.5 2024-09-20

2024-09-20 ffmpeg路径可配置

v0.0.4 2024-07-10

2024-07-10 超时时间修改为 60 * 1000 毫秒
2024-07-10 如果在超时时间内没有下载完当前分片重新开始下载

v0.0.3 2024-07-05

2024-07-05 修复URI分割报错

v0.0.2 2024-07-04

2024-07-04 修改markdown说明
2024-07-04 修改m3u8变量名称
2024-07-04 修改本地文件引号转义
2024-07-04 添加完成校验文件
2024-07-04 修复获取任务列表的URL

v0.0.1 2024-07-04

2024-07-04 首次提交