Hello! I'm developing a little web app for my Samsung TV.
My app gets the link of a given video and plays it.
Playback works great, but there is a problem about the video aspect ratio: this video aspect ratio is 16:9, but when I build the app and then I run in on my TV it gets played on 4:3 aspect ratio.
I have this problem only with the TV; with the tizen studio TV emulator aspect ratio is correct.
Following there is my index.html. It uses a getEpisode.js script that just gets the video link.
Can you please help me to solve that?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">-->
<meta name='viewport' content='width=3840, user-scalable=no'>
<meta name="description" content="Hello Tizen Sample"/>
<title>Hello world</title>
</head>
<body>
<video autoplay id="videoMonitor" width = "1000px" src=""></video>
<script src="js/app.js"></script>
<script src="js/getEpisode.js"></script>
</body>
</html>