feat(Prime Video): Add Playback speed patch (#5444)
This commit is contained in:
parent
2136573cb6
commit
f46dbcd084
7 changed files with 308 additions and 1 deletions
|
|
@ -4,4 +4,10 @@ public interface VideoPlayer {
|
|||
long getCurrentPosition();
|
||||
|
||||
void seekTo(long positionMs);
|
||||
|
||||
void pause();
|
||||
|
||||
void play();
|
||||
|
||||
boolean isPlaying();
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package com.amazon.video.sdk.player;
|
||||
|
||||
public interface Player {
|
||||
float getPlaybackRate();
|
||||
|
||||
void setPlaybackRate(float rate);
|
||||
|
||||
void play();
|
||||
|
||||
void pause();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue