Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

jyt-m3u8-downloaderjyt m3u8 下载器

Agent Skill

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

总安装

2,864

周安装

117

GitHub Stars

公开资料未说明

下载量

927
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install jyt-m3u8-downloader

简介

用于从 M3U8 流媒体 URL 下载视频文件,支持多比特率解析。

  • 自动处理嵌套播放列表与密钥解密流程。
  • 适合离线观看或内容存档场景使用。jyt-m3u8-downloader 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确保视频来源合法,遵守版权规定。
  • 安装前建议确认本地是否有足够存储空间。

SKILL.md

name
m3u8-downloader
description
This skill should be used when the user wants to download videos from M3U8 streaming URLs. It handles parsing M3U8 playlists (including nested multi-bitrate playlists), downloading TS segments with multi-threading, handling AES-128 encryption keys, and merging segments into MP4 files using ffmpeg. Triggers: download m3u8 video, download streaming video, m3u8 download, download video from URL, download ts segments, HLS video download.

M3U8 Video Downloader

Overview

Download videos from M3U8/HLS streaming URLs by parsing playlists, downloading TS segments with multi-threading, handling encrypted streams (AES-128), and merging all segments into a single MP4 file using ffmpeg.

Prerequisites

Before executing, ensure the following are available:

  1. Python 3 with requests library installed: pip install requests
  2. ffmpeg installed and added to system PATH (required for merging TS segments into MP4)
  3. Network access to the M3U8 URL

Workflow

1. Understand the User's Request

Extract from the user:

  • M3U8 URL: The streaming playlist URL (required)
  • Output filename: Name for the saved MP4 file (required, without extension)
  • Base64 key (optional): For encrypted streams that require a manually provided AES-128 decryption key

2. Prepare the Environment

  • Copy scripts/M3u8Download.py to the working directory
  • Ensure requests is installed in the Python environment
  • Verify ffmpeg is accessible from the command line: ffmpeg -version

3. Execute the Download

Use the M3u8Download class from scripts/M3u8Download.py:

from M3u8Download import M3u8Download

M3u8Download(
    m3u8_url="<user_provided_url>",
    file_path="<output_name>",        # Without extension; TS temp dir and final MP4 use this name
    max_workers=64,                   # Concurrent download threads
    num_retries=10,                   # Retry count on download failure
    base64_key=None                   # Optional: base64-encoded AES-128 key for encrypted streams
)

Key Parameters

ParameterDescription
m3u8_urlM3U8 playlist URL or local file path
file_pathBase name for temp folder and output MP4 file
max_workersMax concurrent download threads (default: 64)
num_retriesDownload retry count on failure (default: 10)
base64_keyOptional base64-encoded decryption key for AES-128 encrypted streams

4. What Happens During Download

  1. Parse M3U8: Fetches and parses the M3U8 playlist. If it is a master playlist (contains EXT-X-STREAM-INF), automatically follows the redirect to the media playlist.
  2. Download key: If the playlist specifies EXT-X-KEY, the encryption key is downloaded (or uses the provided base64_key).
  3. Download segments: All TS segments are downloaded concurrently with progress bar display.
  4. Merge: ffmpeg merges all TS segments into a single MP4 file.
  5. Cleanup: After verifying the MP4 file size matches the total TS size (within 10% tolerance), temporary TS files, key file, and M3U8 file are deleted automatically.

5. Handle Errors

  • If ffmpeg is not found, inform the user to install it and add to PATH.
  • If download fails due to network issues, the retry mechanism will attempt num_retries times.
  • If the MP4 output size does not match the TS total size, temporary files are preserved for manual inspection.
  • For encrypted streams without a provided key, the script attempts auto-download; if that fails, ask the user for the base64_key.

Scripts

scripts/M3u8Download.py

Main download script containing the M3u8Download class. This is the primary script to use for all M3U8 download operations.

Notes

  • The script supports both URL-based and local file-based M3U8 inputs.
  • Chinese filenames and paths are supported.
  • On Windows, os.startfile() is used to open the output directory after download completes.
  • Do NOT modify the source code in scripts/ - use it as-is.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.09%
按下载量换算752

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills