0

Live Video from HDMI input using videorotate10.html

Hello. 

Our client had a project running on xd1230 player it  wos portarait and had a zone which was from HDMI input but it was using videorotate10.html as html site.

the code from the file as follows. video tag includes src="TV:brightsign.biz/hdmi" hdmi source but video wont play after we have firmware updated & software updated.

Please Advise.

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="js/jquery-1.10.1.min.js"> </script>

<style>

::-webkit-scrollbar {
width: 0px;
height: 0px;
background: black;}

body{
background-color:rgba(95,64,132,1);
background-size: auto;
font-family: Verdana, Geneva, sans-serif;
}
.video{
position:absolute;
-webkit-transform:rotate(-90deg);
-webkit-transform-origin:center;
width:1060px;
height:795px;
left:-133px;
top:133px;
background-color:#000099l;

}
</style>

</head>

<body>


<video class="video" src="TV:brightsign.biz/hdmi" autoplay></video>

 

</body>
</html>

2 comments

  • 0
    Avatar
    Chris Dotson

    This works:

    <video width="320" height="240">
           <source src="tv:brightsign.biz/hdmi">
    </video>

    The problem I'm having is modifying JavaScript to look for this input instead of a USB input.
  • 0
    Avatar
    Alfonso Descalzo

    Hi Chris, did you manage to get it done?

    I´m also interested in using the HDMI input with JavaScript.

Please sign in to leave a comment.