I do demos for my website. I am kinda old and my movements and typing are slow. The demos have no audio. Is there any way to set the default playback speed to 2.0 in the player?
Thanks.
I do demos for my website. I am kinda old and my movements and typing are slow. The demos have no audio. Is there any way to set the default playback speed to 2.0 in the player?
Thanks.
@develand this is possible using the SDK!
<iframe src="https://customer-f33zs165nr7gyfy4.cloudflarestream.com/6b9e68b07dfee8cc2d116e4c51d6a957/iframe" style="border: none" height="720" width="1280" allow="accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;" allowfullscreen="true" id="stream-player"></iframe>
<script src="https://embed.cloudflarestream.com/embed/sdk.latest.js"></script>
<script>
const player = Stream(document.getElementById('stream-player'));
player.playbackRate = 2
</script>
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.