range query for mp4 video play

fix https://github.com/chrislusf/seaweedfs/issues/2156
This commit is contained in:
Chris Lu 2021-06-29 02:13:29 -07:00
parent 24e11d1e90
commit 3668d10664

View file

@ -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)