gpt4 book ai didi

windows - 使用HTA应用程序播放实时流

转载 作者:行者123 更新时间:2023-12-02 22:36:08 26 4
gpt4 key购买 nike

我有一个直播,我想在我的HTA应用程序上播放。

我尝试使用this answer

<head>
<title>Main</title>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
</head>

<body>
<bgsound>
<button onclick="playSound()">Play</button>

<script language="javascript">
function playSound() {
document.getElementsByTagName("bgsound")[0].src = "https://www.url.org/stream";
}
</script>

</body>
</html>

(是的,我想念很多东西,但这不应该阻止它运行)

我按播放,什么也没发生。我该如何运作?

最佳答案

您可以尝试使用embed标签:
<embed src="url.to/stream" type="video/mp4" autoplay="1"/>
我刚刚在Windows 10上对其进行了测试,其工作方式类似于以下示例:

<html>
<head>
<title>Embedded video into HTA</title>
<HTA:APPLICATION
APPLICATIONNAME="Embedded video"
ID="Embedded video"
ICON="nslookup.exe"
WINDOWSTATE="maximize"
VERSION="1.0"/>
<style>
body {
color:white;
background-color:lightblue;
background-image:url('https://apod.nasa.gov/apod/image/2001/DesertEclipse_Daviron_2000.jpg');
background-repeat:repeat;
background-size: 100%;
}
</style>
<script type="text/vbscript">
Sub Reload()
window.location.reload(True)
End Sub
</script>
</head>
<body>
<center>
<br><hr>
<embed src="http://94.23.221.158:9197/stream" width=50% height=45% type="video/mp4" autoplay="1"/>
<br><hr>
<img src="http://www.icone-png.com/png/23/22961.png" Title="Reload Application video" alt="Reload Application video" onclick="Reload()" style="cursor:hand">
</center>
</body>
</html>

关于windows - 使用HTA应用程序播放实时流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62378403/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com