Android/IOS Video Player?

Hi again, one more question. Would it be ok, and is it possible to disable the Twitch player controls and then make my own? This would solve the problem for me. I was thinking of using:

<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}",      
        controls: false
    };
    var player = new Twitch.Player("{PLAYER_DIV_ID}", options);
    player.setVolume(0.5);
</script>

Not sure if controls: false would have any effect though.