简体   繁体   中英

Is there a way to fast forward and rewind audio in flutter?

I'm using the audioplayers plugin and its works fine. But can't seem to find a way to fast-forward or rewind. so, Anyone can please help?

You can seek the player to a specific duration with the below code:

  int result = await audioPlayer.seek(Duration(milliseconds: 1200));

So you can gain the fast forward with the below code, just write a logic, where the duration will increase twice.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM