updated readme for 2.0.2

This commit is contained in:
K4YT3X 2018-08-18 10:48:47 -04:00
parent 52fd096826
commit b1fb8c9333

View File

@ -1,7 +1,8 @@
# Video2X Video Enlarger # Video2X Video Enlarger
## 2.0.1 (Aug 1, 2018) ## 2.0.2 (Aug 10, 2018)
- Fixed json decoding error - Changed enlarging mechanism from factor to resolution
- Fixed audio merging errors
## Description ## Description
@ -47,29 +48,29 @@ $ sudo pip install -r requirements.txt
To enlarge a video on a computer with NVIDIA GPU To enlarge a video on a computer with NVIDIA GPU
```bash ```bash
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME -f TIMES_TO_ENLARGE --gpu $ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME --width OUTPUT_WIDTH --height OUTPUT_HEIGHT --gpu
``` ```
To enlarge a video on a computer without NVIDIA GPU To enlarge a video on a computer without NVIDIA GPU
```bash ```bash
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME -f TIMES_TO_ENLARGE --cpu $ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME --width OUTPUT_WIDTH --height OUTPUT_HEIGHT --cpu
``` ```
## Full Usage ## Full Usage
``` ```
usage: video2x.py [-h] [-f FACTOR] [-v VIDEO] [-o OUTPUT] [-y MODEL_TYPE] usage: video2x.py [-h] [--width WIDTH] [--height HEIGHT] [-v VIDEO]
[--cpu] [--gpu] [--cudnn] [-o OUTPUT] [-y MODEL_TYPE] [--cpu] [--gpu] [--cudnn]
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit
Controls: Controls:
-f FACTOR, --factor FACTOR --width WIDTH Output video width
Factor to enlarge video by --height HEIGHT Output video height
-v VIDEO, --video VIDEO -v VIDEO, --video VIDEO
Specify video file Specify source video file
-o OUTPUT, --output OUTPUT -o OUTPUT, --output OUTPUT
Specify output file Specify output file
-y MODEL_TYPE, --model_type MODEL_TYPE -y MODEL_TYPE, --model_type MODEL_TYPE