If you take a look at the default 0.8.6 skin, video does display in a skinned window... I'm still trying to figure out how they did it.
Edit: I got it working,
but it needs some help. For example, open a music file, then open a video file!
After that, opening video files always results in the video window not working.
Code: Select all
<Window id="video" x="300" y="300" dragdrop="false" playondrop="true" visible="vlc.hasVout">
<Layout id="video-layout" width="300" height="187" maxwidth="1280" maxheight="1024">
<Image id="video-bg" image="img-video-background" action="move" x="0" y="0" visible="true"/>
<Button x="288" y="1" up="img-close_normal" over="img-close_hover" down="img-close_active" action="vlc.pause();video.hide();" tooltiptext="Quit"/>
<!--<Video x="10" y="10" width="268" height="75" autoresize="true"/>-->
<Video x="7" y="14" width="286" height="166" id="TheVideo2" autoresize="true"/>
</Layout>
</Window>
Edit2: I'm beginning to think there is a bug with "vlc.hasVout" video detection to check if a video is playing. Also, a bug relating to using the naitive video player even if a "<video>" tag exists in a skin's xml...