Step-by-step installation guide
Yout-linux-x86_64 (~85 MB) — x86_64 standalone binary, no installation required
mkdir -p ~/.local/bin ~/.local/share/icons ~/.local/share/applications && wget https://desktop.yout.com/download/Yout-linux-x86_64 -O ~/.local/bin/yout && chmod +x ~/.local/bin/yout && wget https://desktop.yout.com/download/yout-icon.png -O ~/.local/share/icons/yout.png && cat > ~/.local/share/applications/yout.desktop << EOF
[Desktop Entry]
Name=Yout Desktop
Comment=Format shift videos and audio
Exec=$HOME/.local/bin/yout
Icon=$HOME/.local/share/icons/yout.png
Type=Application
Categories=AudioVideo;Audio;Video;
Terminal=false
StartupWMClass=Yout
EOF
update-desktop-database ~/.local/share/applications/ 2>/dev/null; ~/.local/bin/yout
No sudo required. Installs to ~/.local/bin/ (user-local).
Download using your browser (click above) or from the terminal:
wget https://desktop.yout.com/download/Yout-linux-x86_64 -O ~/Downloads/Yout
Or with curl:
curl -L -o ~/Downloads/Yout https://desktop.yout.com/download/Yout-linux-x86_64
chmod +x ~/Downloads/Yout
Move the binary to ~/.local/bin/ (no sudo needed):
mkdir -p ~/.local/bin && mv ~/Downloads/Yout ~/.local/bin/yout
Make sure ~/.local/bin is in your PATH. On most distros it already is. If not, add this to your ~/.bashrc or ~/.zshrc:
export PATH="$HOME/.local/bin:$PATH"
Test it:
yout
Create a .desktop file so Yout appears in your application menu (GNOME, KDE, XFCE, etc.):
First, download the app icon:
mkdir -p ~/.local/share/icons && wget https://desktop.yout.com/download/yout-icon.png -O ~/.local/share/icons/yout.png
Then create the .desktop entry:
cat > ~/.local/share/applications/yout.desktop << EOF
[Desktop Entry]
Name=Yout Desktop
Comment=Format shift videos and audio
Exec=$HOME/.local/bin/yout
Icon=$HOME/.local/share/icons/yout.png
Type=Application
Categories=AudioVideo;Audio;Video;
Terminal=false
StartupWMClass=Yout
EOF
Update the desktop database:
update-desktop-database ~/.local/share/applications/ 2>/dev/null
GNOME: Open Activities, find Yout, right-click → "Add to Favorites"
KDE: Right-click the app in the menu → "Add to Panel" or "Add to Desktop"
XFCE: Right-click panel → Panel → Add New Items → Launcher, then select Yout
Yout Desktop uses Qt6. On most desktop Linux distributions, the required libraries are already installed. If the app doesn't launch, install these packages:
sudo apt install libxcb-xinerama0 libxcb-cursor0 libxkbcommon0 libegl1
sudo dnf install xcb-util-cursor xcb-util-wm xcb-util-keysyms libxkbcommon mesa-libEGL
sudo pacman -S xcb-util-cursor xcb-util-wm libxkbcommon
Open Yout Desktop and sign in with your Yout.com account (or create one for free). Paste a video URL, choose your format, and start format shifting.
To completely remove Yout Desktop from your system:
rm -f ~/.local/bin/yout ~/.local/share/icons/yout.png ~/.local/share/applications/yout.desktop && update-desktop-database ~/.local/share/applications/ 2>/dev/null
This removes the binary, icon, and desktop entry. No other files are left behind.