I'm trying to incorporate MobileVLCKit
into my app but the default time observer isn't precise enough for me and makes the progress bar jump between times. Is there a way to get more precise time updates (for example, every 1/60th second)?
Here's my current code:
let player = VLCMediaPlayer()
func mediaPlayerTimeChanged(_ aNotification: Notification) {
print(player.time)
}
/// 0.0
/// 0.0
/// 0.0
/// 0.1
/// 0.1
/// 0.1
/// 0.2
Thanks in advance!