9 lines
207 B
Bash
Executable File
9 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Description:
|
|
# Launch mpv with smooth motion interpolation enabled
|
|
|
|
export NVPRESENT_ENABLE_SMOOTH_MOTION=1
|
|
|
|
mpv --vo=gpu-next --gpu-api=vulkan --gpu-context=waylandvk --video-sync=audio "$@"
|