I suffer from the Rift Audio Mirroring bug where the pitch gradually changes. Anyone else had this, and have a fix?
If there's nothing simpler, I've seen a quite clever workaround using a batch file to repeatedly change the volume up and down a single step, as this resets the problem each time.
loop
{
Send {Volume_Up}
Send {Volume_Down}
sleep, 5000
}
But it's years since I've done this kind of thing, and I can't remember how exactly.
I'm assuming that sleep command is standard? And is it measured in seconds, meaning 5000 seems rather high, maybe 100 would be better.
And the next question, if this'll work, is - how do you then cancel it? Will it run in a CMD window I can just close?
If there's nothing simpler, I've seen a quite clever workaround using a batch file to repeatedly change the volume up and down a single step, as this resets the problem each time.
loop
{
Send {Volume_Up}
Send {Volume_Down}
sleep, 5000
}
But it's years since I've done this kind of thing, and I can't remember how exactly.
I'm assuming that sleep command is standard? And is it measured in seconds, meaning 5000 seems rather high, maybe 100 would be better.
And the next question, if this'll work, is - how do you then cancel it? Will it run in a CMD window I can just close?