douguaidian8021 2017-12-08 16:31 采纳率: 100%
浏览 437
已采纳

如何为html5视频标签流式传输视频文件

I was wondering what's the best way to stream a video file (mpg4/avi - or any other format) in Go. Possibly, I'd like to be able to play it using a simple tag.

I've tried playing the famous Big Buck Bunny file with this code:

package main

import (
    "fmt"
    "log"
    "net/http"
    "os"
    "time"
)

func serveHTTP(w http.ResponseWriter, r *http.Request) {
    video, err := os.Open("./bunny.avi")
    if err != nil {
        log.Fatal(err)
    }
    http.ServeContent(w, r, "bunny.avi", time.Now(), video)
    defer video.Close()
}

func main() {
    http.HandleFunc("/", serveHTTP)
    err := http.ListenAndServe(":8080", nil)
    if err != nil {
        fmt.Println(err.Error())
    }
}

But when loading the html page in my browser nothing plays and only one http request is actually triggered and only one response with 206 Partial content is sent to the page. Response

The html page contains the following code in the body:

<video width="320" height="240" controls autoplay>
    <source src="http://localhost:8080">
    Your browser does not support the video tag.
</video>

Thank you!

展开全部

  • 写回答

2条回答 默认 最新

  • duanduan8439 2017-12-08 18:14
    关注

    Your go code looks fine, leading me to think this is probably a problem with your video. avi is usually not supported for html5, see here for more details on containers/codecs for html5.

    I would try with a known working video. eg: https://www.quirksmode.org/html5/videos/big_buck_bunny.mp4

    Maybe even simplify your code and just use http.ServeFile, although the important part of video serving (range requests) is in ServeContent anyway.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部