This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <domain type='kvm'> | |
| <name>win11-real</name> | |
| <uuid>45768371-b871-4937-b7c2-60ed835011de</uuid> | |
| <metadata> | |
| <libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0"> | |
| <libosinfo:os id="http://microsoft.com/win/10"/> | |
| </libosinfo:libosinfo> | |
| </metadata> | |
| <memory unit='KiB'>33554432</memory> | |
| <currentMemory unit='KiB'>33554432</currentMemory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From https://gitlab.freedesktop.org/pipewire/pipewire/-/wikis/Troubleshooting#stuttering-audio-in-virtual-machine | |
| # Solved my issue VMWare 17.5/Fedora 40 | |
| Stuttering Audio (in Virtual Machine) | |
| Normally this should not happen but is usually caused by jittery drivers. In a VM | |
| this is most common because the device is emulated. | |
| you can usually fix this problem by giving more headroom in the alsa device | |
| ringbuffer. | |
| You need to edit the WirePlumber configuration as follows (since 0.5, the older 0.4 version | |
| uses lua scripts for configuration): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ "`/usr/bin/whoami`" != "root" ]; then | |
| echo "You need to execute this script as root." | |
| exit 1 | |
| fi | |
| INSTALL_DIR="./builds/ffmpeg" | |
| ############################################################################### | |
| # ffmpeg installer for centos 7 | |
| # based on instructions at https://trac.ffmpeg.org/wiki/CompilationGuide/Centos |