video2x/README.md

95 lines
2.9 KiB
Markdown
Raw Normal View History

2018-02-25 03:51:41 +00:00
# Video2X Video Enlarger
2018-05-19 05:06:47 +00:00
2018-11-29 17:40:38 +00:00
### This software is currently designed for Windows.
2018-10-22 19:21:41 +00:00
2018-11-29 17:40:38 +00:00
## 2.1.6 (November 26, 2018)
2018-10-22 19:21:41 +00:00
2018-11-29 17:40:38 +00:00
- Restored the option to define a factor which the will be upscaled by, which is suggested by @wuast94 .
2018-11-03 01:52:34 +00:00
## 2.1.4 (November 2, 2018)
- Added hardware acceleration option for ffmpeg. Ffmpeg will use hardware acceleration (GPU, usually) if `--gpu` or `--cudnn` is given. You can customize the method to use in `video2x.json`.
2018-02-25 04:14:52 +00:00
## Description
2018-02-25 03:51:41 +00:00
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.
2018-05-19 05:06:47 +00:00
For short: **Video2X enlarges your video without losing details**
2018-02-25 04:14:52 +00:00
2018-05-19 05:06:47 +00:00
Watch for the sharper edges in this screenshot around the shadows:
2018-10-22 19:58:27 +00:00
[![preview](https://user-images.githubusercontent.com/18014964/36638068-19cdb78c-19b8-11e8-8dfb-406b7015d30c.png)](https://www.youtube.com/watch?v=PG94iPoeoZk)
2018-02-25 04:51:09 +00:00
2018-05-19 05:06:47 +00:00
**Or you can watch the YouTube video Demo: https://www.youtube.com/watch?v=PG94iPoeoZk**
2018-05-19 05:10:06 +00:00
## Screenshot
![screenshot](https://user-images.githubusercontent.com/21986859/40265170-39c0caae-5b01-11e8-8371-8b6c24769639.png)
2018-05-19 05:06:47 +00:00
</br>
2018-02-25 04:51:09 +00:00
2018-02-25 04:14:52 +00:00
## Installation
### Prerequisites
- **Python 3**
Download: https://www.python.org/downloads/windows/
2018-05-19 05:06:47 +00:00
- **FFMPEG Windows Build**
2018-02-25 04:14:52 +00:00
Download: https://ffmpeg.org/download.html
2018-05-19 05:06:47 +00:00
- **waifu2x-caffe for Windows**
2018-02-25 04:14:52 +00:00
Download: https://github.com/lltcggie/waifu2x-caffe/releases
After downloading the dependencies, clone the video2x package.
2018-08-02 01:52:10 +00:00
```bash
2018-02-25 04:14:52 +00:00
$ git clone https://github.com/K4YT3X/video2x.git
$ cd video2x
2018-05-19 05:06:47 +00:00
```
2018-08-02 01:52:10 +00:00
Then you'll need to install python dependencies before start using video2x. Install simply by executing the following command.
```bash
$ pip install -r requirements.txt
2018-08-02 01:52:10 +00:00
```
2018-02-25 04:14:52 +00:00
## Quick Start
To enlarge a video on a computer with NVIDIA GPU
2018-08-02 01:52:10 +00:00
```bash
2018-08-18 14:48:47 +00:00
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME --width OUTPUT_WIDTH --height OUTPUT_HEIGHT --gpu
2018-05-19 05:06:47 +00:00
```
2018-02-25 04:14:52 +00:00
To enlarge a video on a computer without NVIDIA GPU
2018-08-02 01:52:10 +00:00
```bash
2018-08-18 14:48:47 +00:00
$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME --width OUTPUT_WIDTH --height OUTPUT_HEIGHT --cpu
2018-05-19 05:06:47 +00:00
```
## Full Usage
```
2018-08-18 14:48:47 +00:00
usage: video2x.py [-h] [--width WIDTH] [--height HEIGHT] [-v VIDEO]
[-o OUTPUT] [-y MODEL_TYPE] [--cpu] [--gpu] [--cudnn]
2018-05-19 05:06:47 +00:00
optional arguments:
-h, --help show this help message and exit
Controls:
2018-08-18 14:48:47 +00:00
--width WIDTH Output video width
--height HEIGHT Output video height
2018-05-19 05:06:47 +00:00
-v VIDEO, --video VIDEO
2018-08-18 14:48:47 +00:00
Specify source video file
2018-05-19 05:06:47 +00:00
-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
2018-08-02 01:52:10 +00:00
```
This project is based on the following softwares and projects.
- [FFMPEG]('https://www.ffmpeg.org/')
- [waifu2x caffe](https://github.com/lltcggie/waifu2x-caffe)