-
|
Can the rubberband audio filter be used in Flyleaf? If so, can I see a code snippet of how to adjust pitch of audio by semitones? |
Beta Was this translation helpful? Give feedback.
Answered by
SuRGeoNix
Apr 17, 2025
Replies: 1 comment
-
|
Hi @bakyard, you can check this sample https://github.com/SuRGeoNix/Flyleaf/blob/master/Samples/FlyleafPlayer%20(WPF%20Control)%20(WPF)/MainWindow.xaml.cs#L109 I tried this one and seems to work fine:- playerConfig.Audio.Filters = new()
{
new() { Name = "rubberband", Args = "tempo=1:pitch=1.5", Id = "rubberband1" },
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bakyard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @bakyard, you can check this sample https://github.com/SuRGeoNix/Flyleaf/blob/master/Samples/FlyleafPlayer%20(WPF%20Control)%20(WPF)/MainWindow.xaml.cs#L109
I tried this one and seems to work fine:-