You are not logged in.

#1 2025-06-15 16:10:20

Zilibobka
Member
Registered: 2025-06-15
Posts: 2

Weird noise in 2.4 GHz headphones and even weirder fix

Recently i bought dark project hs5 headphones (bluetooth/2.4 GHz)
And i have a slight noise on 2.4 mode in left ear. On android too
I know that some of 2.4 headphones have it, BUT if i change volume of sound on linux (found using pavucontrol), noise disappears for a second.
Now i'm using script like this, but its really bad fix:

#!/bin/bash                                                                                       
set -x                                                                                             
sink_id=$(wpctl status | grep -F 'HS5 Analog Stereo' | awk '{print $3}' | tr -d '.')               
                                                                                                   
if [[ -z "$sink_id" ]]; then                                                                       
  echo "Not found sink HS5 Analog Stereo"                                                         
  exit 1                                                                                           
fi                                                                                                 
while true; do                                                                                     
                                                                                                   
  wpctl set-volume "$sink_id" 1                                                                   
  sleep 1                                                                                         
                                                                                                   
  wpctl set-volume "$sink_id" 0.99                                                                 
  sleep 1                                                                                         
done

Offline

#2 2025-06-15 16:22:21

Zilibobka
Member
Registered: 2025-06-15
Posts: 2

Re: Weird noise in 2.4 GHz headphones and even weirder fix

also, this fix is bad because i can hear that 1%

UPD: fix V2 turbo-flex
#!/bin/bash
set -x
sink_id=$(wpctl status | grep -F 'HS5 Analog Stereo' | awk '{print $3}' | tr -d '.')

if [[ -z "$sink_id" ]]; then
  echo "Not found sink HS5 Analog Stereo"
  exit 1
fi
while true; do

  wpctl set-volume "$sink_id" 1
  sleep 1

  wpctl set-volume "$sink_id" 0.99
 
done

Last edited by Zilibobka (2025-06-15 17:24:58)

Offline

Board footer

Powered by FluxBB