我试图在我的Go项目中实现Shaka Player。项目结构如下:
.
├── client
│ ├── index.html
│ ├── shaka.js
│ └── shaka-player.compiled.js
└── server
├── assets
│ ├── test_dashinit.mp4
│ └── test_dash.mpd
├── Gopkg.lock
├── Gopkg.toml
├── main.go
└── vendorindex.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Video</title>
<script src="shaka-player.compiled.js" defer></script>
<script src="shaka.js" defer></script>
</head>
<body>
<video id="video-clip" controls></video>
</body>
</html>
我的main.go文件,我在其中指定了index.html和test_dash.mpd的路由
func sendManifest(w http.ResponseWriter, r *http.Request) {
// Open the file.
manifest, err := os.Open("server/assets/test_dash.mpd")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer manifest.Close()
// Get file size.
stat, err := manifest.Stat()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
size := strconv.FormatInt(stat.Size(), 10)
// Set the headers.
w.Header().Set("Content-Disposition", "attachment; filename=manifest.mpd")
w.Header().Set("Content-Type", "application/dash+xml")
w.Header().Set("Content-Length", size)
// Send the file.
io.Copy(w, manifest)
}
func main() {
cwd, _ := os.Getwd()
fmt.Println(cwd)
fs := http.FileServer(http.Dir("client"))
http.Handle("/", fs)
http.HandleFunc("/manifest", sendManifest)
http.ListenAndServe(":5000", nil)
}当我尝试使用player.load()访问清单时,它只返回404 Not found。但当我尝试在浏览器中通过相同的链接(127.0.0.1:5000/manifest)访问它时,一切正常,我可以下载该文件。指南中的链接运行良好。我应该如何从我的Go服务器上提供视频清单,以便Shaka玩家可以毫无错误地使用它?
发布于 2019-08-20 00:56:13
好了,指定方案就足够了:http://127.0.0.1:5000/manifest而不仅仅是127.0.0.1:5000/manifest。
https://stackoverflow.com/questions/57538927
复制相似问题