Skip to content

v4.29.0

Compare
Choose a tag to compare
@github-actions github-actions released this 27 Jun 06:32

Changes from v4.29.0

Fixes:

  • FEC-13250 - expose new events for enable/disable videoTracks
    once video surface is available / removed event will be fired
    for example: if user uses API for enable or disable user track then the event will be fired
    videoTracksEnabled may be fired also if video is rendered first time

New Evens:

public static final PlayerEvent.Type videoTracksEnabled = Type.VIDEO_TRACKS_ENABLED;
public static final PlayerEvent.Type videoTracksDisabled = Type.VIDEO_TRACKS_DISABLED;

Example:

ON_VIDEO_TRACK_ENABLED
ON_VIDEO_TRACK_DISABLED

        player.addListener(this, PlayerEvent.videoTracksDisabled, event -> {
            log.d("videoTracksDisabled");
        });

        player.addListener(this, PlayerEvent.videoTracksEnabled, event -> {
            log.d("videoTracksEnabled");
        });

[AN][Core] - add events for enable/disable videoTracks

Plugin Playkit Support

v4.29.0

Plugin's Version

  • implementation 'com.kaltura.playkit:playkit:4.29.0'

  • implementation 'com.kaltura.playkit:playkitproviders:4.29.0'

  • implementation 'com.kaltura.playkit:youboraplugin:4.29.0'

  • implementation 'com.kaltura.playkit:imaplugin:4.29.0'

  • implementation 'com.kaltura.playkit:kavaplugin:4.29.0'

  • implementation 'com.kaltura.playkit:vrplugin:4.29.0'

  • implementation 'com.kaltura.playkit:googlecast:4.29.0'

Samples