Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to adjust play speed of video on android? [closed]

Tags:

I need to implement a requriment of adjust play speed when playing a video, how can I do that using Android API (MediaPlayer) or other 3rd-party library? I google it, and no any idea by far. Any suggestions welcome, thank you.

like image 886
sunjinbo Avatar asked Mar 14 '17 03:03

sunjinbo


1 Answers

Media player does not provide what you want. You have to use some other android api.

check link. Speed Control of MediaPlayer in Android

Or you can use media player with PlaybackParams(added in 23 api)

https://developer.android.com/reference/android/media/PlaybackParams.html

like image 135
Keyur Thumar Avatar answered Oct 11 '22 16:10

Keyur Thumar