I am developing an application for Samsung Tizen Smart TV's. I have a strange problem. The app plays sound and responds to remote controller keys in the simulator, but the sound is not playing and the keys are not working in the emulator.
I am using HTML5 Audio tags.
What could be the reason? Thanks in advance.
Edit:
A very basic web page as follows:
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<audio id="audioMain" src="http://streams.myabcradio.com/api/914/320/stream?user=justanuser&pass=justapassword" autoplay="autplay" preload="none"></audio>
</body>
</html>
plays sound in the simulator, but not in the emulator. I tried adding
but still no sound...