bumped version to 5.0.0-beta3

This commit is contained in:
k4yt3x 2022-02-15 07:02:53 +00:00
parent 595b179d3c
commit c07fafc0e9
4 changed files with 4 additions and 4 deletions

View File

@ -5,6 +5,6 @@ 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 \
ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
-i input.mp4 -o output.mp4 \
interpolate

View File

@ -5,7 +5,7 @@ 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 \
ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
-i input.mp4 -o output.mp4 \
-p5 upscale \
-h 720 -a waifu2x -n3

View File

@ -11,7 +11,7 @@ sudo podman run -it --rm \
--cpus 0.9 \
-v $HOME/projects/media2x/video2x:/video2x \
-e PYTHONPATH="/video2x" \
ghcr.io/k4yt3x/video2x:5.0.0-beta2-cuda \
ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
-i data/input.mp4 -o data/output.mp4 \
-p5 \
upscale \

View File

@ -24,7 +24,7 @@ Last Modified: February 11, 2022
# version assignment has to precede imports to
# prevent setup.cfg from producing import errors
__version__ = "5.0.0-beta2"
__version__ = "5.0.0-beta3"
# local imports
from .video2x import Video2X