Bae*_*ree 9 mp4 webserver http go html5-video
我使用golang开发了一个webserver.漂亮的飞机东西,它只提供html/js/css和图像,它们完美无缺:
func main() {
http.Handle("/", new(viewHandler))
http.ListenAndServe(":8080", nil)
}
func (vh *viewHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
path := r.URL.Path[1:]
log.Println(path)
data, err := ioutil.ReadFile(string(path))
if err == nil {
var contentType string
if strings.HasSuffix(path, ".html") {
contentType = "text/html"
} else if strings.HasSuffix(path, ".css") {
contentType = "text/css"
} else if strings.HasSuffix(path, ".js") {
contentType = "application/javascript"
} else if strings.HasSuffix(path, ".png") {
contentType = "image/png"
} else if strings.HasSuffix(path, ".jpg") {
contentType = "image/jpeg"
}
w.Header().Add("Content-Type", contentType)
w.Write(data)
} else {
log.Println("ERROR!")
w.WriteHeader(404)
w.Write([]byte("404 - " + http.StatusText(404)))
}
}
我尝试以同样的方式将mp4格式的视频添加到我的网站:
<video width="685" height="525" autoplay loop style="margin-top: 20px">
<source src="../public/video/marketing.mp4" type="video/mp4">Your browser does not support the video tag.</video>
并增强了我的go应用程序的内容类型部分:
else if strings.HasSuffix(path, ".mp4") {
contentType = "video/mp4"
}
当我直接在Chrome中打开html文件时,视频播放正常,但如果我通过在http:// localhost上调用Web服务器打开网站...则无法加载它,因此无法播放.
没有加载视频,如果我尝试直接点击它,浏览器只显示一些视频控件而不加载文件:
有什么想法吗?提前致谢.
更新:
正如所建议的那样,我还尝试了另一个非常好的视频!但我不知道为什么,我比较了两个视频:
可能是大小??
干杯谢谢!
UPDATE2:
icza是对的,我将他的帖子标记为我的问题的正确答案.但是,让我解释一下我最终做了什么才能让它发挥作用:
我试图在不使用http.FileServe方法的情况下解决我的问题.所以我这样实现:
} else if strings.HasSuffix(path, ".mp4") {
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)
}
}
w.Header().Add("Content-Type", contentType)
w.Write(data)
这是我第一次播放视频.但是因为我希望它循环它应该直接从头开始,但它停留在视频的最后一帧.
所以我实现了ServeFile()方法,如:
if contentType == "video/mp4" {
http.ServeFile(w, r, path)
} else {
w.Header().Add("Content-Type", contentType)
w.Write(data)
}
视频现在也正确地循环播放.但是我仍然不知道为什么ServeFile()正在工作而另一种方法虽然两种方法的响应完全相同.然而,内容现在看起来像这样:
干杯,感谢所有帮助过我的人.