mirror of
https://github.com/NohamR/dashdrm-mp4ff.git
synced 2026-07-11 22:42:01 +00:00
Add a Streamlink plugin (plugin/dashdrm_mp4ff.py) to support DRM-protected MPEG-DASH streams with optional mp4ff-decrypt integration. Include README with usage and installation notes, an interactive helper (gen.py) that reads vault.json and prints Streamlink commands, a vault.json example, pyproject.toml (declares inquirerpy dependency), .python-version, and .gitignore. This provides the plugin, packaging metadata, and tooling needed to run and test DASH-DRM streams locally.
10 lines
242 B
TOML
10 lines
242 B
TOML
[project]
|
|
name = "dashdrm-mp4ff"
|
|
version = "0.1.0"
|
|
description = "Plugin for Streamlink to support DASH-DRM protected streams using mp4ff in option."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"inquirerpy>=0.3.4",
|
|
]
|