Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 vlc activex 中使用“--ipv4-timeout”选项,但它不起作用,这是我的代码:
id = vlc.playlist.add(rtspURL, null, "--ipv4-timeout=20000");
请试试这个
:network-caching=1000 :ipv4-timeout=25000
例子:
var options = new Array(":network-caching=", ":ipv4timeout=25000"); vlc.playlist.add(mrl,"test",options); vlc.playlist.playItem(itemId);