mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-01 10:29:09 +00:00
11 lines
216 B
Bash
11 lines
216 B
Bash
|
#!/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-beta2-cuda \
|
||
|
-i input.mp4 -o output.mp4 \
|
||
|
interpolate
|