Alternative approach to enable Prime Video HD playback on Linux, using Wine and Brave 📽️

See upstream repository prime-wine for more info on use.
- Install WSL and Docker.
- Download: Windows X-server
- Run with these settings:
docker build --platform linux/amd64 -t wine-tkg-lutris "C:\Docker\Lutris"
- Run this in pwsh or cmd:
docker run -it -e DISPLAY=host.docker.internal:0 -v /tmp/.X11-unix:/tmp/.X11-unix -v C:\Docker\Lutris\Wine:/data/wine -v lutris-wine-data:/home/lutrisuser wine-tkg-lutris
- No need to wait for wine to update. Click the + in the upper left corner and
Install from a local install script.
Open a command shell:
docker run -it -e DISPLAY=host.docker.internal:0 -v /tmp/.X11-unix:/tmp/.X11-unix -v C:\Docker\Lutris\Wine:/data/wine -v lutris-wine-data:/home/lutrisuser wine-tkg-lutris /bin/bash
Remove everything!
# Stop and remove containers using the Lutris image
$containers = docker ps -a --filter "ancestor=wine-tkg-lutris" --format "{{.ID}}"
if ($containers) {
docker stop $containers
docker rm $containers
}
# Remove the Lutris image
docker rmi wine-tkg-lutris --force
# Remove the specific Lutris volume
docker volume rm lutris-wine-data -f
# Remove the local project folder
Remove-Item -Recurse -Force "C:\Docker\Lutris"

