The following HTML is opened in an MFC dialogbox (the code of which is IE-based).
I would like to modify the HTML below such that streaming already starts with the option ":network-caching=300"...
I.e. have the option embedded in the param name="Src" directive...
(If possible - this is MUCH preferable to opening the page with no video and then by simulating a button click invoking a Javascript function to open the stream and set the option using 'playlist.add'...)
<!DOCTYPE html>
<html>
<body>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
</head>
<object
classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
codebase="http://download.videolan.org/pub/videol ... /axvlc.cab"
id="vlc"
name="vlc"
class="vlcPlayer"
events="True">
<param name="Src" value="rtsp://192.168.200.15:8557/PSIA/Streaming/channels/2?videoCodecType=H.264" /> <!-- ie -->
</object>
</html>
</body>