Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

m3u8-media-downloaderm3u8 媒体下载器

Agent Skill

m3u8-media-downloader 用于辅助视频、动画、脚本化剪辑和多媒体生成流程,适合在 OpenClaw 中需要整理视频素材、生成脚本或维护合成项目时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,434

周安装

503

GitHub Stars

1

下载量

3,903
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:m3u8-media-downloader(m3u8 媒体下载器)
来源仓库:https://github.com/renxia/m3u8-media-downloader
安装命令:
openclaw skills install m3u8-media-downloader
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install m3u8-media-downloader

简介

解析 m3u8/HLS 流媒体并支持抖音等平台视频下载的工具。

  • 适用于多媒体内容整理与离线保存的研究检索场景。
  • 可同时获取视频元信息与分段下载加速处理。m3u8-media-downloader 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 部分平台禁止爬虫抓取,使用时请注意合规边界。
  • 下载内容仅限个人用途,不得用于商业分发获利。

SKILL.md

name
m3u8-media-downloader
description
Use @lzwme/m3u8-dl for media download and video info parsing. Use when the user mentions video/music download (m3u8/HLS/mp4/mp3 or 抖音/皮皮虾/微博视频), or 获取视频信息、解析视频链接, and a video/music URL is present.
version
1.9.0
author
renxia (https://lzw.me)
license
MIT
repository
https://github.com/lzwme/m3u8-dl
metadata

m3u8-downloader

Download m3u8/mp4 video and mp3/music, support 抖音、皮皮虾、微博 sharing links. Multi-thread download, WebUI, batch and Node API.

Example:

使用 m3u8-media-downloader 下载抖音视频/获取该视频详情:https://v.douyin.com/CW1iv0GeSJM/

Main capabilities

  • m3u8/HLS & mp4 — download and merge to mp4 (ffmpeg required for ts→mp4)
  • Music — mp3/m4a from m3u8/stream sources
  • 抖音/皮皮虾/微博 — parse or download sharing links

CLI

# 推荐方式:固定版本执行
m3u8dl <urls...> [options]
m3u8dl info <url>        # 解析视频信息
m3u8dl server            # 启动 WebUI (http://localhost:6600)

Key options

OptionDescription
-f, --filename <name>Output filename
-n, --thread-num <n>Download threads (default: 4)
-S, --save-dir <dir>Save directory
-T, --type <type>m3u8 (default) \parser \web
-H, --headers <json>Custom request headers
--ffmpeg-path <path>ffmpeg path (for mp4 conversion)

Quick examples

# Basic download
m3u8dl https://example.com/video.m3u8 -f "My Video" -S ./downloads

# 抖音/皮皮虾/微博 sharing link
# parser and download video
m3u8dl "https://v.douyin.com/xxxxx/" --type parser
# parser and print info
m3u8dl info "https://h5.pipix.com/xxxxx"

# With name: "name|url"
m3u8dl "Episode 1|https://example.com/ep1.m3u8"

# Batch: file with one "filename$url" per line
m3u8dl series-list.txt -f "Series Name"

# Extract m3u8 from web page
m3u8dl "https://example.com/play/123" --type web

WebUI

m3u8dl server [-P <port>] [-t <token>]
# Optional env vars for customization: DS_PORT, DS_SECRET, DS_SAVE_DIR, DS_CACHE_DIR, DS_FFMPEG_PATH

Open http://localhost:6600 to manage tasks in browser.

Security Considerations

⚠️ Important Security Notice
  • Version Pinning: This skill uses pinned version @1.9.0 to prevent execution of different code on each run
  • Code Review: Inspect the package via npm view @lzwme/m3u8-dl@1.9.0 or GitHub before execution
  • Sandbox Environment: Run download tasks in an isolated environment with restricted filesystem permissions
  • ffmpeg Installation: Ensure ffmpeg is installed from official or trusted sources only
  • Sensitive Variables: DS_SECRET is sensitive - configure carefully to protect WebUI access
  • Legal Compliance: Ensure downloads comply with local laws and source site terms of service

Node API

import { m3u8Download, VideoParser, m3u8BatchDownload } from '@lzwme/m3u8-dl';

// Download m3u8/mp4
await m3u8Download(url, { filename: 'video', saveDir: './downloads' });

// Parse 抖音/皮皮虾/微博
const parser = new VideoParser();
const info = await parser.parse('https://v.douyin.com/xxxxx/');
await parser.download(info, { saveDir: './downloads' });

// Batch download
await m3u8BatchDownload(['name1$url1', 'name2$url2'], { saveDir: './downloads' });

Scenario guide

ScenarioCLINode API
m3u8/mp4 URLm3u8dl <url>m3u8Download(url)
抖音/皮皮虾/微博--type parser or info <url>VideoParser.parse()
Web page with m3u8--type webgetM3u8Urls()
Batch download`"name\url"` or filem3u8BatchDownload()
mp4 conversionRequires ffmpegSet ffmpegPath

LINKS

  • source: https://github.com/lzwme/m3u8-dl/tree/main/packages/ai-agent/skills/m3u8-media-downloader

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.37%
按下载量换算3,527

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills