After update to tvOS 14 Beta, remote control not work, and when video play with standard video player, all control are stuck.

https://developer.apple.com/documentation/tvmljs/creating_a_client-server_tvml_app

I try play this demo project with tvOS 14 Beta, and there are several issues:
  • issue 1: Play video logic only work with device, not work with simulator now, but tvOS 13 and old XCode can run it on simulator.

  • issue 2: All buttons on remote control not work while play video on device with standard video player.






Replies

I have fixed issue 2.

I use using MediaItem's artworkImageURL property in my code, but tvOS 14 not support artworkImageURL(I don't find any documents about this, maybe it is a bug on tvOS 14). After I comment this line, everything work.

Code Block javascript
const mediaItem = new MediaItem();
            // mediaItem.artworkImageURL = v_pic;
            mediaItem.description = v_description;
            mediaItem.subtitle = v_subtitle;
            mediaItem.url = v_url;
            mediaItem.type = 'video';
            mediaItem.title = v_title;
            mediaItemList.push(mediaItem);

Hi Aladdin,
Are you able to play the video on simulators using tvOS 14 Beta? (issue 1)

Hello everyone, please help us in resolving issue 1 mentioned..

Your inputs will be very appreciable!!

Thanks.,
Shanthakumar