VLC ON WEB - DEINTERLACE (LINEAR) - ASPECT RATIO 16:9
Posted: 04 Mar 2014 22:01
Hi, help me please with web code. I need play RTMP stream on web (its ok) and enable LINEAR deinterlace and aspect ratio 16:9. THANKS
My code:
My code:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MediaPortal WebServices--VLC Player</title>
<script language="Javascript">
<!--
vlc.video.deinterlace.enable("linear");
//!-->
</script>
</head>
<body >
<object id="vlcplayer_ie" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" width="400" height="300" events="True">
<param name="Src" value="***my stream***" />
<param name="ShowDisplay" value="false" ></param>
<param name="AutoLoop" value="yes"></param>
<param name="AutoPlay" value="yes"></param>
<embed id="vlcplayer" type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"
autoplay="yes" loop="yes" width="400" height="300" target="***my stream***" />
</object>
</body>
</html>