SO中文参考
首页
(current)
程序语言
c
java
python
c++
go
javascript
swift
c#
操作系统
linux
ubuntu
centos
unix
数据库
oracle
mysql
mongodb
postgresql
框架
node.js
angular
react-native
avalon
django
twisted
hadoop
.net
移动开发
android
ios
搜索
如何将 hsl 流实现到 hbbtv</desc> <question vote="0"> <p>问题是在 HbbTV 中实现 HTTP Live Streaming(也称为 HLS) 我找不到解决方案</p> <p>我试过这个例子</p> <pre><code><!DOCTYPE html> <html> <head> <title>HbbTV Stream</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> function initApp() { var videoElement = document.createElement("video"); videoElement.setAttribute("type", "application/vnd.apple.mpegurl"); videoElement.setAttribute("src", "http.//example.com/test.m3u8"); videoElement.setAttribute("data-fullscreen", "true"); videoElement.setAttribute("data-pauseonexit", "true"); videoElement.setAttribute("autoplay", ""); videoElement.addEventListener("error", function(e) { console.log("Video error:", e); }); document.body.appendChild(videoElement); } </script> </head> <body onload="initApp()"> </body> </html> </code></pre> </question> </body></html>
问题描述
投票:0
回答:0
javascript
html
http-live-streaming
hbbtv
最新问题
在 Spring Modulith 应用程序中将事件放置在哪里?
Spring Modulith - 在哪里放置事件?
将不同 Dataframe 的列表保存到 json
无法从PCF中部署的Spring云配置服务器导入的配置文件中获取字段
计算具有不同数量的匿名函数的元胞数组
如何在 Cargo.toml 的依赖项中指定可选功能的提交
如何提取整个比赛而不仅仅是捕获的组?
为什么它返回垃圾值
Oracle数据库23ai:出现错误ORA-02264,但我既找不到指定名称的约束,也无法删除一个约束
Python 中的模块层次结构问题
有没有办法自定义DropDownButtonFormField中DropDownMenuItem的颜色(Flutter Web)
MSAL 登录登录弹出问题。 BrowserAuthError:user_cancelled:用户取消了流程
JavaScript 如何在指定秒数后执行操作? [重复]
带字符串参数和非字符串参数的 setTimeout 之间的区别
JQGrid 虚拟滚动不起作用
通过 SSH 隧道引导所有 Android 流量[已关闭]
无法在 Android Studio 中启动 AVD,并带有关于 HAXM 和虚拟机管理程序驱动程序的模拟器警告
如何使用PDO从mysql创建数据库和表?
Wordpress 将自定义分类添加到自定义菜单
PHP 从字符串中清除特殊字符
© www.soinside.com 2019 - 2024. All rights reserved.