Dash-Industry-Forum / FAQ

0 stars 0 forks source link

Which HTTP servers support DASH?  #3

Open haudiobe opened 10 years ago

TaehyunKim commented 10 years ago

Any HTTP server can serve DASH live profile and any HTTP server which support HTTP1.1 byte range request can serve DASH on demand profile.

Racum commented 9 years ago

There is a easy way to test: try to curl it partially:

curl -H Range:bytes=16- -I http://your-server.com

If the response is HTTP status is 206 ("Partial Content") your server support byte range; if the status is 200 ("Ok") you may need to change your settings or your server!