mirror of
https://github.com/k4yt3x/video2x.git
synced 2026-02-27 10:44:47 +08:00
for v2.0b
This commit is contained in:
69
README.md
69
README.md
@@ -1,50 +1,73 @@
|
|||||||
# Video2X Video Enlarger
|
# Video2X Video Enlarger
|
||||||
[](https://gitter.im/K4YT3X-DEV/SCUTUM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
||||||
[](https://travis-ci.org/K4YT3X/SCUTUM)
|
**Current Version: 2.0 beta**
|
||||||
|
|
||||||
|
## 2.0 Beta Changes
|
||||||
|
1. Fixed contents meant for demonstration
|
||||||
|
1. Fixed audio issues
|
||||||
|
1. Better CUI
|
||||||
|
1. Now using absolute path for every file
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
Video2X is an automation software based on waifu2x image enlarging engine. It extracts frames from a video, enlarge it by a number of times without losing any details or quality, keeping lines smooth and edges sharp.
|
Video2X is an automation software based on waifu2x image enlarging engine. It extracts frames from a video, enlarge it by a number of times without losing any details or quality, keeping lines smooth and edges sharp.
|
||||||
|
|
||||||
Watch for the sharper edges in this screenshot around the shadows
|
For short: **Video2X enlarges your video without losing details**
|
||||||

|
|
||||||
|
|
||||||
## Video Demo (YouTube)
|
Watch for the sharper edges in this screenshot around the shadows:
|
||||||
|

|
||||||
|
|
||||||
<p align="center">
|
**Or you can watch the YouTube video Demo: https://www.youtube.com/watch?v=PG94iPoeoZk**
|
||||||
<a href="https://www.youtube.com/watch?v=PG94iPoeoZk">
|
|
||||||
<img border="0" alt="Video2X Demo" src="https://img.youtube.com/vi/PG94iPoeoZk/0.jpg" width="480" height="360">
|
</br>
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
+ **FFMPEG Windows Build**
|
- **FFMPEG Windows Build**
|
||||||
Download: https://ffmpeg.org/download.html
|
Download: https://ffmpeg.org/download.html
|
||||||
+ **waifu2x-caffe for Windows**
|
- **waifu2x-caffe for Windows**
|
||||||
Download: https://github.com/lltcggie/waifu2x-caffe/releases
|
Download: https://github.com/lltcggie/waifu2x-caffe/releases
|
||||||
|
|
||||||
|
|
||||||
After downloading the dependencies, clone the video2x package.
|
After downloading the dependencies, clone the video2x package.
|
||||||
~~~~
|
```
|
||||||
$ git clone https://github.com/K4YT3X/video2x.git
|
$ git clone https://github.com/K4YT3X/video2x.git
|
||||||
$ cd video2x
|
$ cd video2x
|
||||||
~~~~
|
```
|
||||||
|
|
||||||
Now follow the in-line description and modify **FFMPEG_PATH** and **WAIFU2X_PATH**.
|
|
||||||
You can also change **FOLDERIN** and **FOLDERIN** if you want.
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
To enlarge a video on a computer with NVIDIA GPU
|
To enlarge a video on a computer with NVIDIA GPU
|
||||||
~~~~
|
```
|
||||||
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME -f TIMES_TO_ENLARGE --gpu
|
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME -f TIMES_TO_ENLARGE --gpu
|
||||||
~~~~
|
```
|
||||||
|
|
||||||
To enlarge a video on a computer without NVIDIA GPU
|
To enlarge a video on a computer without NVIDIA GPU
|
||||||
~~~~
|
```
|
||||||
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME -f TIMES_TO_ENLARGE --cpu
|
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME -f TIMES_TO_ENLARGE --cpu
|
||||||
~~~~
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Full Usage
|
||||||
|
```
|
||||||
|
usage: video2x.py [-h] [-f FACTOR] [-v VIDEO] [-o OUTPUT] [-y MODEL_TYPE]
|
||||||
|
[--cpu] [--gpu] [--cudnn]
|
||||||
|
|
||||||
|
optional arguments:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
|
||||||
|
Controls:
|
||||||
|
-f FACTOR, --factor FACTOR
|
||||||
|
Factor to enlarge video by
|
||||||
|
-v VIDEO, --video VIDEO
|
||||||
|
Specify video file
|
||||||
|
-o OUTPUT, --output OUTPUT
|
||||||
|
Specify output file
|
||||||
|
-y MODEL_TYPE, --model_type MODEL_TYPE
|
||||||
|
Specify model to use
|
||||||
|
--cpu Use CPU for enlarging
|
||||||
|
--gpu Use GPU for enlarging
|
||||||
|
--cudnn Use CUDNN for enlarging
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user