65 Star 396 Fork 128

admpub/nging

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
video.go 497 Bytes
一键复制 编辑 原始数据 按行查看 历史
admpub 提交于 2019-10-13 14:12 . update
package index
import (
"fmt"
"github.com/webx-top/echo"
"github.com/webx-top/echo/engine"
)
var M3U8Template = `#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-ALLOW-CACHE:YES
#EXT-X-TARGETDURATION:86400
#EXTINF:86400,
%s
#EXT-X-ENDLIST
`
func TS2M3U8(ctx echo.Context) error {
ctx.Response().Header().Set("Content-Type", "application/vnd.apple.mpegURL")
tsFile := ctx.Form(`ts`)
m3u8Content := fmt.Sprintf(M3U8Template, tsFile)
return ctx.Blob(engine.Str2bytes(m3u8Content))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/admpub/nging.git
git@gitee.com:admpub/nging.git
admpub
nging
nging
v2.0.6

搜索帮助