mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -euxo pipefail
|
|
|
|
sudo podman run \
|
|
-it --rm --gpus all -v /dev/dri:/dev/dri \
|
|
-v $PWD/data:/host \
|
|
ghcr.io/k4yt3x/video2x:5.0.0-beta4-cuda \
|
|
-i input.mp4 -o output.mp4 \
|
|
interpolate
|