From 05f0f68b4f7b0bf61f0d3ab97f9b04cc4bd79feb Mon Sep 17 00:00:00 2001 From: tsi-billypom Date: Fri, 11 Apr 2025 15:57:59 -0400 Subject: [PATCH] auto --- components/PMediaPlayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/PMediaPlayer.py b/components/PMediaPlayer.py index dd70e81..166cd77 100644 --- a/components/PMediaPlayer.py +++ b/components/PMediaPlayer.py @@ -47,7 +47,7 @@ class PMediaPlayer: def _build_pitch_filter(self, rate: float): pitch = Gst.ElementFactory.make("pitch", "pitch") - pitch.set_property("pitch", 1.0) # Keep pitch constant + # pitch.set_property("pitch", 1.0) # Keep pitch constant pitch.set_property("rate", rate) bin = Gst.Bin.new("filter_bin")