mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-29 16:09:10 +00:00
12 lines
244 B
Bash
12 lines
244 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 \
|
||
|
-p5 upscale \
|
||
|
-h 720 -d waifu2x -n3
|