I have a question -- how did you manage to show Bitrate, Latency and Buffer metrics in real time for the livestream?
I was able to do this by fetching metrics from CloudWatch, but they are far from being real time, and sometimes they are not retrieved properly.
Again. Thank you so much for this. I'm building a Livestream service for my platform Moon Boots (moonbootsapp.com) and I've been struggling to find step-by-step tutorials like the ones you've made.
Thank you!
I've been a full stack developer since 2004. I have a lot of experience with the cloud and everything from Java to JavaScript. I love code, technology, gaming, microcontrollers, and hiking!
One way to show the live bitrate, latency and buffer in real time would be to use setInterval on the client and retrieve those values from the player itself:
This is awesome!
I have a question -- how did you manage to show Bitrate, Latency and Buffer metrics in real time for the livestream?
I was able to do this by fetching metrics from CloudWatch, but they are far from being real time, and sometimes they are not retrieved properly.
Again. Thank you so much for this. I'm building a Livestream service for my platform Moon Boots (moonbootsapp.com) and I've been struggling to find step-by-step tutorials like the ones you've made.
Thank you!
One way to show the live bitrate, latency and buffer in real time would be to use
setIntervalon the client and retrieve those values from the player itself:I had no idea this was possible. Thank you very much!