mirror of
https://github.com/NohamR/dashdrm-mp4ff.git
synced 2026-07-11 19:10:04 +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.
25 lines
725 B
JSON
25 lines
725 B
JSON
{
|
|
"channels": [
|
|
{
|
|
"id": "example-channel-1",
|
|
"number": "1",
|
|
"name": "Example Channel 1",
|
|
"mpd_url": "https://example.com/playlist/v1/live/123/1/live.mpd",
|
|
"keys": [
|
|
"11111111111111111111111111111111:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
|
"22222222222222222222222222222222:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
|
|
]
|
|
},
|
|
{
|
|
"id": "example-channel-2",
|
|
"number": "2",
|
|
"name": "Example Channel 2",
|
|
"mpd_url": "https://example.com/playlist/v1/live/456/1/live.mpd",
|
|
"keys": [
|
|
"33333333333333333333333333333333:cccccccccccccccccccccccccccccccc",
|
|
"44444444444444444444444444444444:dddddddddddddddddddddddddddddddd"
|
|
]
|
|
}
|
|
]
|
|
}
|