Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gpac/node-gpac-dash
NodeJS module for DASH streaming using GPAC
https://github.com/gpac/node-gpac-dash
Last synced: 2 days ago
JSON representation
NodeJS module for DASH streaming using GPAC
- Host: GitHub
- URL: https://github.com/gpac/node-gpac-dash
- Owner: gpac
- License: agpl-3.0
- Created: 2015-03-25T13:38:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-18T13:39:56.000Z (over 8 years ago)
- Last Synced: 2024-08-02T02:16:01.841Z (3 months ago)
- Language: JavaScript
- Size: 69.3 KB
- Stars: 125
- Watchers: 21
- Forks: 32
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
DASH Low Latency Web Server
===============================NodeJS-based code to run a web server for serving MPEG-DASH content, in particular generated by MP4Box or DashCast.
The server is capable of achieving low-latency streaming. More details in [this paper](http://biblio.telecom-paristech.fr/cgi-bin/download.cgi?id=14719). If you want to cite this work in academic context, please cite:Bouzakaria, N.; Concolato, C.; Le Feuvre, J.
"Overhead and performance of low latency live streaming using MPEG-DASH," IISA 2014, pp.92,97, 7-9 July 2014
doi: 10.1109/IISA.2014.6878732The server has been also used in the following publication:
J. Le Feuvre, C. Concolato, N. Bouzakaria and V. T. Nguyen, "MPEG-DASH for Low Latency and Hybrid Streaming Services", ACM MM, Brisbane, Australia, October 2015 [PDF](http://biblio.telecom-paristech.fr/cgi-bin/download.cgi?id=15580) [DOI 10.1145/2733373.2807977 ].
Usages
=====Simple DASH Web Server with on-demand content
```
MP4Box -dash 1000 -profile live counter.mp4
node gpac-dash.js
MP4Client http://127.0.0.1:8000/counter_dash.mpd (also works with DASH.js)
```Simple DASH Server with on-demand content (different content generation)
```
MP4Box -dash 1000 -profile live counter.mp4 -segment-marker eods
node gpac-dash.js
MP4Client http://127.0.0.1:8000/counter_dash.mpd (does not work with DASH.js, MEDIA_DECODE_ERR)
```DASH Server with on-demand content sent using HTTP chunked transfer encoding
```
MP4Box -dash 1000 -profile live counter.mp4 -segment-marker eods
node gpac-dash.js -segment-marker eods -chunk-media-segments
MP4Client http://127.0.0.1:8000/counter_dash.mpd (does not work with DASH.js)
```Simple DASH Server with pseudo-live content
```
MP4Box -dash-live 1000 -frag 1000 -profile live -subdur 1000 -mpd-refresh 1000 -time-shift 3000 counter.mp4
node gpac-dash.js
MP4Client http://127.0.0.1:8000/counter_dash.mpd (does not work with DASH.js, wrong fetch time)
```Low-latency DASH Server with live content
```
DashCast -vf dshow -vres 640x480 -vfr 30 -v video="Integrated Webcam" -live -low-delay -frag 200 -insert-utc -seg-marker eods -min-buffer 0.2 -ast-offset -800 -pixf yuv420p
node gpac-dash.js -segment-marker eods -chunk-media-segments
MP4Client http://127.0.0.1:8000/output/dashcast.mpd -opt Network:BufferLength=200 -opt DASH:LowLatency=chunk -opt DASH:UseServerUTC=no
```