I am using default AVPlayerviewcontroller with the default playercontrols, skip buttons for video streaming in tvOS app. Custom controls/buttons are not being used.
Can we override the AVPlayerviewcontroller voice over accessibility text/behaviour in for the default player controls? I am not to find out any apple's documentation on this ands not sure even its possible.
Post
Replies
Boosts
Views
Activity
I have observed that the 'playbackError' event is not getting fired while a video playback error occurs. This is happening only in tvOS14 where in tvOS13, it's firing as expected.
Did Apple change anything related to this event? I am not able to see any changes related to this in apple documentation(https://developer.apple.com/documentation/tvmljs/player/1682115-playbackerror).
Added the event listener for this event as follows:
jsplayer.addEventListener('playbackError', (error) => { console.log("Playback Error Occurred", error) });