Im using the MediaSession api for integrating the voice commands into my android video player.
Im able to perform commands "play" "pause" "fast forward" and "rewind" , but the problem is with the "rewind" and "fast forward" commands which im unable to distinguish the callback. Both call backs are returned from "onSeekTo(long)" method.
For eg: Lets say "Alexa fast forward 10 sec" the onSeekTo(long) method at first receives "10000ms" later if we try again saying the same it returns different values.
Also for "Alexa rewind 10sec" it does the same.
And im unable to distinguish between the rewind and fast forward outputs.