GoLang Web 伺服器串流影片
問題:設定為服務HTML、CSS、JavaScript 和伺服器嘗試失敗的Golang Web 失敗失敗串流MP4 視訊。
該問題是由於處理大型視訊檔案而引起的。 Chrome 要求伺服器支援超過一定大小的影片的 Range 請求,但提供的程式碼並沒有解決這個問題。透過實現範圍請求支持,伺服器可以僅發送視訊的請求部分,從而實現播放。
A:增強程式碼以支援範圍請求。
修改包含檢查MP4 文件並發送適當的標頭和響應代碼的代碼:
<code class="go">if contentType == "video/mp4" { size := binary.Size(data) if size > 0 { requestedBytes := r.Header.Get("Range") w.Header().Add("Accept-Ranges", "bytes") w.Header().Add("Content-Length", strconv.Itoa(size)) w.Header().Add("Content-Range", "bytes "+requestedBytes[6:len(requestedBytes)]+strconv.Itoa(size-1)+"/"+strconv.Itoa(size)) w.WriteHeader(206) } }</code>
此外,考慮使用http.ServeFile() 來提供視頻文件,它支援範圍請求:
<code class="go">if contentType == "video/mp4" { http.ServeFile(w, r, path) }</code>
以上是如何在 Golang Web 伺服器中串流 MP4 影片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!