• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

IP camera streaming and playback issue

hunter042

Junior Member
I have H-series ip camera, i want to play recorded video in SD card of that ip camera in "Windows Media player", I have embedded WMP code in my application, I am able to play it but when i load my application page it is asking me two time user authentication that don't want, i am passing user authentication in src(underline and bold) as shown in following code, how to solve this issue pleas help me out i am pasting my WMP code as follows

<object id="MediaPlayer" width="300" height="300" type="video/x-ms-asf">
<param name="FileName"value="http://admin:123456@192.168.1.4:8088/sd/20131210/record000/P131210_102036_103038.avi">
<param name="autostart" value="true">
<param name="ShowControls" value="true">
<param name="ShowStatusBar" value="false">
<param name="ShowDisplay" value="false">
<embed type="application/x-mplayer2" src="http://admin:123456@192.168.1.4:8088/sd/20131210/record000/P131210_102036_103038.avi"
width="192" height="190" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="0" />
</object>
 
Back
Top