jajabro1
jajabro1
UBUniversal Blue
Created by Kleptoplasm on 5/31/2024 in #🛟bazzite-help
Why does youtube keep stuttering?
This could be related to the Moonlight and GeForce NOW issues with stuttering. Though it would make less sense. Moonlight and GeForce NOW are live streaming where as youtube should be buffering. Can you let me know what you are using to watch youtube and what you are watching. It's possible its related to the Wi-Fi scanning that is causing stuttering in Game Streaming and it's causing lock ups in anything that is live video
3 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
I put both those scripts and a read me with info on what I did to get this to work as well as tips to get it to work in Steam Big Picture mode.
18 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
22 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
I've put them up in GitHub, hopefully anyone coming to find a solition will get them. I've included a Read Me inside o the Streaming_Stutter_Fix folder. Give a star if it's useful to you, or don't, I'm not your dad.
22 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
The difficulty here is that there is not easy way to type this all in to the Ally without a dock or keyboard. I use an Android app that lets me use my phone as a bluetooth mouse and keyboard. I will put these up on Github as some point for my personal memory, but I'll be happy to share it as well later if it's easier to just git clone them in and give chmod +x permissions to the script.
22 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
I also tested on Moonlight streaming from my in home Linux PC and it worked about as well, just didn't go quiet as long with it. I streamed for about 45 minutes without stutter.
22 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid ''
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid ''
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
With the locking script, I was I was able to stream from GeForce NOW for like 4 hours yesterday without ANY stuttering, where as before it was every 5-10 minutes for about 5-15 seconds. But I had to make sure to change that password on the KDE wallet because before in Steam Big Picture it would run and then not make the change. NOTE: If you add this as a Non-Steam Game, there won't be any obvious output. You'll get a black screen like its launching a game and then it will take you back to the launch screen. So you likely won't see the wifi disconnect and reconnect. If you test this in Desktop Mode, you will see the Wifi disconnect and reconnect and even get notifications about it.
22 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
I got it from here: https://github.com/moonlight-stream/moonlight-qt/issues/752
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid $BSSID
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
nmcli con mod $SSID 802-11-wireless.bssid ''
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid $BSSID
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
nmcli con mod $SSID 802-11-wireless.bssid ''
I also had to use Kdewalletmanger to change the password to the default kdewallet to nothing, this would cause it to not work from inside Steam Big Picture mode I also created a different script that is slightly different that I run after I'm done streaming and maybe moving from where I am (since I have multiple Meshed APs), that will disable the BSSID lock. Remember, that when locking BSSID you aren't just disabling the Wi-Fi scanning that is causing the problem (we don't know why yet) but you are locking to a specific Wifi Access Point and frequency so moving from where you are too far from the AP you locked to can cause issues. I tend to stream from the same spot so its not a big issue for me. This is the script that I slightly edited from the above to clear the BSSID lock to turn default wifi behavior back on
22 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
Yeah! here you go
22 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
With the locking script, I was I was able to stream from GeForce NOW for like 4 hours yesterday without ANY stuttering, where as before it was every 5-10 minutes for about 5-15 seconds
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid ''
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid ''
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
This is the script that I slightly edited from the above to clear the BSSID lock to turn default wifi behavior back on
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
I also created a different script that is slightly different that I run after I'm done streaming and maybe moving from where I am (since I have multiple Meshed APs), that will disable the BSSID lock. Remember, that when locking BSSID you aren't just disabling the Wi-Fi scanning that is causing the problem (we don't know why yet) but you are locking to a specific Wifi Access Point and frequency so moving from where you are too far from the AP you locked to can cause issues. I tend to stream from the same spot so its not a big issue for me.
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
I also had to use Kdewalletmanger to change the password to the default kdewallet to nothing, this would cause it to not work from inside Steam Big Picture mode
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid $BSSID
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
nmcli con mod $SSID 802-11-wireless.bssid ''
#!/bin/bash
# Get the connected wifi Card Details and connected SSID/ BSSID
WIFI_CARD=$(nmcli dev status | grep wifi | grep -v disconnected | head -n1 | cut -d " " -f1)
LINK_INFO=$(iw dev $WIFI_CARD link)
BSSID=$(echo $LINK_INFO | grep -o -P '(?<=Connected to ).*(?= \(on)' | tr '[:lower:]' '[:upper:]')
SSID=$(echo $LINK_INFO | grep -o -P '(?<=SSID: ).*(?= freq)')

# Lock Wifi to the BSSID to stop background scanning.
nmcli con mod $SSID 802-11-wireless.bssid $BSSID
nmcli dev dis $WIFI_CARD
nmcli dev con $WIFI_CARD
nmcli con mod $SSID 802-11-wireless.bssid ''
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
see below though for a copy paste
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
18 replies
UBUniversal Blue
Created by Techz on 6/24/2024 in #🛟bazzite-help
Game streaming (Moonlight / Greenlight) + Network stutter due to network scans
Confirmed this works, though I had to make sure I copied the script right and I did an extra step of changing the kdewallet password to nothing so that it didn't lock up asking for it via kdewalletmanager
18 replies
UBUniversal Blue
Created by Cube on 4/29/2024 in #🛟bazzite-help
legion go moonlight stutter caused by audio buffer overflow
I did have to change the kdewallet password to nothing, otherwise it would ask for the wallet to be unlocked and then it wouldn't work
22 replies