feat(Prime Video): Add Playback speed patch (#5444)

This commit is contained in:
Sujitha Wijewantha
2025-07-17 02:27:55 +07:00
committed by GitHub
parent 2136573cb6
commit f46dbcd084
7 changed files with 308 additions and 1 deletions

View File

@@ -4,4 +4,10 @@ public interface VideoPlayer {
long getCurrentPosition();
void seekTo(long positionMs);
void pause();
void play();
boolean isPlaying();
}

View File

@@ -0,0 +1,11 @@
package com.amazon.video.sdk.player;
public interface Player {
float getPlaybackRate();
void setPlaybackRate(float rate);
void play();
void pause();
}