Interactive Embed Player Hide Controls Option

Is there any way to hide the player controls with this API?

<script src= "http://player.twitch.tv/js/embed/v1.js"></script>
<div id="{PLAYER_DIV_ID}"></div>
<script type="text/javascript">
    var options = {
        width: 854,
        height: 480,
        channel: "{CHANNEL}", 
        //video: "{VIDEO_ID}"       
    };
    var player = new Twitch.Player("{PLAYER_DIV_ID}", options);
    player.setVolume(0.5);
</script>

controls: false in the options.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.