Fast forward - audio delay #530
Unanswered
swiss-go-to
asked this question in
Q&A
Replies: 1 comment 5 replies
-
@swiss-go-to Can you confirm if you have Config.Audio.FiltersEnabled enabled or not? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I ran into this issue:
When fast forwarding 5x, 6x etc. and then getting back 1x I am getting an Audio delay (1-2 seconds).
I tried various ways to handle it and what somehow worked is:
player.Speed = 1;
player.ReversePlayback = true;
player.ReversePlayback = false;
player.Play();
This handle the Audio delay after changing the speed back 1x.
I would like to know you have ran into this and what standard way you used to handle it.
Beta Was this translation helpful? Give feedback.
All reactions