我想使用“MediaElementJS”播放器(mediaelementjs.com)播放“RTSP Audio Stream”。我尝试使用RTSP url更新TAG,但它没有成功播放音频。
然后我尝试在VLC播放器中使用相同的RTSP流,并在那里工作。还想让你知道VLC将流显示为“MPEG AAC Audio(mp4a)”。
我在Firefox,IE 9.0,Chrome 18上尝试了代码。我知道浏览器只支持特定类型的音频格式,因此我在每个浏览器上尝试了所有组合。请参阅下面我使用的代码(查看“type”属性)。
<h2>wma</h2>
<audio id="player2" src="rtsp://xx.xxxx.xxxx/D/445/117988/v0001/reflector:44444" type="audio/wma" controls="controls">
</audio>
<h2>m4a</h2>
<audio id="player2" src="rtsp://xx.xxxx.xxxx/D/445/117988/v0001/reflector:44444" type="audio/mp4" controls="controls">
</audio>
<h2>MP3</h2>
<audio id="player2" src="rtsp://xx.xxxx.xxxx/D/445/117988/v0001/reflector:44444" type="audio/mp3" controls="controls">
</audio>
<h2>wav</h2>
<audio id="player2" src="rtsp://xx.xxxx.xxxx/D/445/117988/v0001/reflector:44444" type="audio/wav" controls="controls">
</audio>
<h2>mpeg</h2>
<audio id="player2" src="rtsp://xx.xxxx.xxxx/D/445/117988/v0001/reflector:44444" type="audio/mpeg" controls="controls">
</audio>
1)有没有人在MediaElementJS播放器上成功运行RTSP流?如果是,请分享您使用的代码/配置吗?
2)你知道我可以测试我的播放器的任何样本工作RTSP网址吗?我在网上搜索了很多但是没有RTSP网址正在工作。
提前感谢您的帮助。