Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Viblast/dash-proxy
Easy downloading and mirroring of MPEG-DASH streams
https://github.com/Viblast/dash-proxy
Last synced: about 13 hours ago
JSON representation
Easy downloading and mirroring of MPEG-DASH streams
- Host: GitHub
- URL: https://github.com/Viblast/dash-proxy
- Owner: Viblast
- License: mit
- Created: 2015-11-23T13:28:10.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T19:55:23.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T20:48:12.573Z (3 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 123
- Watchers: 13
- Forks: 75
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-video - Viblast/dash-proxy - Easy downloading and mirroring of MPEG-DASH streams - Viblast/dash-proxy (DASH / Talks Presentations Podcasts)
README
# Dash Proxy
dash proxy is a tool that allows for easy downloading or mirroring of remote MPEG-DASH streams.## How to use
### Install dependencies
```shell
pip install -r requirements.txt
```### Mirroring a remote live stream
```shell
./dashproxy.py http://server.com/Manifest.mpd -o .
```
The content of `http://server.com/Manifest.mpd` will be downloaded to the output directory (specified by `-o`). The MPD will be constantly refreshed and when new content is available it will be also downloaded while old content will be removed. This will practically mirror the remote stream in the output directory (`-o`). The downloaded stream itself can be served using any HTTP server.### Downloading a remote live stream
```shell
./dashproxy.py http://server.com/Manifest.mpd -o . -d
```
This will behave just as the above command except that old content will not be deleted effectively downloading the live stream in the output directory (`-o`). This is useful for downloading a long sample of a live stream that can latter be used for debugging and testing puposes.### Downloaidng a remote VoD steram
```shell
./dashproxy.py http://server.com/Manifest.mpd -o . -d
```
The VoD stream will be downloaded in the output directory (`-o`). In this case the download (`-d`) parameter is effectively ignored. In this example it is provided for clarity.## Supported features
* Segment Timeline## Python compatibility
* 3.4 (recommended)
* 2.7## License
MIT