图片视频画质优化
Go to file
2018-11-05 12:43:16 -05:00
_config.yml Set theme jekyll-theme-architect 2018-03-01 12:20:49 -05:00
.gitignore added gitignore line for pycharm 2018-11-02 21:48:52 -04:00
config_generator.py changed config generator file permissions 2018-10-23 13:27:43 -04:00
ffmpeg.py 2.0.5 patched arguments format 2018-11-02 21:49:19 -04:00
LICENSE Initial commit 2018-02-24 11:34:41 -05:00
README.md updated README for 2.1.4 2018-11-02 21:52:34 -04:00
requirements.txt updated requirements.txt for 2.1.3 2018-10-23 19:17:51 -04:00
testvid.mp4 initial 2018-02-24 13:36:14 -05:00
video2x.json added default hwaccel option 2018-11-02 21:49:37 -04:00
video2x.py 2.1.5 fixed image undistributed bug 2018-11-05 12:43:16 -05:00
waifu2x.py updated date information 2018-10-23 13:12:17 -04:00

Video2X Video Enlarger

WARNING: Version 2.1.1 might be unstable.

A test is undergoing for version 2.1.1 to verify is stability. Please wait patiently for us to finish the tests. It shouldn't take longer than half a day.

This software is currently designed for Windows.

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.

2.1.1 (October 22, 2018)

  • Fixed video stream and audio stream indexing issues.

2.1.0 (October 22, 2018)

  • Added multithreading.

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.

For short: Video2X enlarges your video without losing details

Watch for the sharper edges in this screenshot around the shadows:

preview

Or you can watch the YouTube video Demo: https://www.youtube.com/watch?v=PG94iPoeoZk

Screenshot

screenshot


Installation

Prerequisites

After downloading the dependencies, clone the video2x package.

$ git clone https://github.com/K4YT3X/video2x.git
$ cd video2x

Then you'll need to install python dependencies before start using video2x. Install simply by executing the following command.

$ pip install -r requirements.txt

Quick Start

To enlarge a video on a computer with NVIDIA 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

$ python video2x.py -v VIDEO_FILE -o OUTPUT_FILENAME --width OUTPUT_WIDTH --height OUTPUT_HEIGHT --cpu

Full Usage

usage: video2x.py [-h] [--width WIDTH] [--height HEIGHT] [-v VIDEO]
                  [-o OUTPUT] [-y MODEL_TYPE] [--cpu] [--gpu] [--cudnn]

optional arguments:
  -h, --help            show this help message and exit

Controls:
  --width WIDTH         Output video width
  --height HEIGHT       Output video height
  -v VIDEO, --video VIDEO
                        Specify source 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

This project is based on the following softwares and projects.