Browse Source

range query for mp4 video play

fix https://github.com/chrislusf/seaweedfs/issues/2156
pull/2164/head
Chris Lu 4 years ago
parent
commit
3668d10664
  1. 1
      weed/server/common.go

1
weed/server/common.go

@ -280,6 +280,7 @@ func processRangeRequest(r *http.Request, w http.ResponseWriter, totalSize int64
w.Header().Set("Content-Length", strconv.FormatInt(ra.length, 10))
w.Header().Set("Content-Range", ra.contentRange(totalSize))
w.WriteHeader(http.StatusPartialContent)
err = writeFn(w, ra.start, ra.length)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)

|||||||
100:0
Loading…
Cancel
Save