video2x/video2x.py

162 lines
5.3 KiB
Python
Raw Normal View History

2018-02-24 18:34:00 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
2018-02-25 03:52:04 +00:00
__ __ _ _ ___ __ __
\ \ / / (_) | | |__ \ \ \ / /
\ \ / / _ __| | ___ ___ ) | \ V /
\ \/ / | | / _` | / _ \ / _ \ / / > <
\ / | | | (_| | | __/ | (_) | / /_ / . \
\/ |_| \__,_| \___| \___/ |____| /_/ \_\
2018-02-24 18:34:00 +00:00
Name: Video2x Controller
Author: K4YT3X
Date Created: Feb 24, 2018
2018-02-25 03:52:04 +00:00
Last Modified: Feb 25, 2018
Licensed under the GNU General Public License Version 3 (GNU GPL v3),
available at: https://www.gnu.org/licenses/gpl-3.0.txt
2018-02-24 18:34:00 +00:00
2018-02-25 03:52:04 +00:00
(C) 2016 - 2017 K4YT3X
2018-02-24 18:34:00 +00:00
2018-02-25 03:52:04 +00:00
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.
Version 1.1 alpha
2018-02-24 18:34:00 +00:00
"""
from ffmpeg import FFMPEG
2018-02-24 21:13:27 +00:00
from fractions import Fraction
2018-02-24 18:34:00 +00:00
from waifu2x import WAIFU2X
2018-04-20 17:00:51 +00:00
import avalon_framework as avalon
2018-02-24 21:13:27 +00:00
import argparse
import json
2018-02-24 18:34:00 +00:00
import os
2018-02-25 03:52:04 +00:00
import traceback
2018-02-24 18:34:00 +00:00
2018-02-25 03:52:04 +00:00
# FFMPEG bin folder. Mind that "/" at the end
2018-02-24 21:13:27 +00:00
FFMPEG_PATH = "C:/Program Files (x86)/ffmpeg/bin/"
2018-02-25 03:52:04 +00:00
# waifu2x executable path. Mind all the forward slashes
2018-02-24 21:13:27 +00:00
WAIFU2X_PATH = "\"C:/Program Files (x86)/waifu2x-caffe/waifu2x-caffe-cui.exe\""
2018-02-24 18:34:00 +00:00
2018-02-25 03:52:04 +00:00
FOLDERIN = "frames" # Folder containing extracted frames
FOLDEROUT = "upscaled" # Folder contaning enlarges frames
2018-02-24 21:13:27 +00:00
def processArguments():
2018-02-25 03:52:04 +00:00
"""Processes CLI arguments
This function parses all arguments
2018-02-24 21:13:27 +00:00
This allows users to customize options
for the output video.
"""
global args
parser = argparse.ArgumentParser()
control_group = parser.add_argument_group('Controls')
control_group.add_argument("-f", "--factor", help="Factor to enlarge video by", action="store", default=2)
control_group.add_argument("-v", "--video", help="Specify video file", action="store", default=False)
control_group.add_argument("-o", "--output", help="Specify output file", action="store", default=False)
2018-04-20 17:00:51 +00:00
control_group.add_argument("-y", "--model_type", help="Specify model to use", action="store", default="anime_style_art_rgb")
control_group.add_argument("--cpu", help="Use CPU for enlarging", action="store_true", default=False)
control_group.add_argument("--gpu", help="Use GPU for enlarging", action="store_true", default=False)
control_group.add_argument("--cudnn", help="Use CUDNN for enlarging", action="store_true", default=False)
2018-02-24 21:13:27 +00:00
args = parser.parse_args()
def get_vid_info():
"""Gets original video information
2018-02-25 03:52:04 +00:00
Retrieves original video information using
ffprobe, then export it into json file.
Finally it reads, parses the json file and
returns a dictionary
Returns:
dictionary -- original video information
2018-02-24 21:13:27 +00:00
"""
os.system("{} -v quiet -print_format json -show_format -show_streams {} > info.json".format("\"" + FFMPEG_PATH + "ffprobe.exe\"", args.video))
json_file = open('info.json', 'r')
json_str = json_file.read()
print(json.loads(json_str))
return json.loads(json_str)
2018-04-20 17:00:51 +00:00
def check_model_type(args):
models_available = ["upconv_7_anime_style_art_rgb", "upconv_7_photo",
"anime_style_art_rgb", "photo", "anime_style_art_y"]
if args.model_type not in models_available:
avalon.error('Specified model type not found!')
avalon.info("Available models:")
for model in models_available:
print(model)
exit(1)
def video2x():
2018-02-25 03:52:04 +00:00
"""Main controller for Video2X
This function controls the flow of video conversion
and handles all necessary functions.
2018-02-24 21:13:27 +00:00
"""
2018-04-20 17:00:51 +00:00
check_model_type(args)
if args.cpu:
method = "cpu"
elif args.gpu:
method = "gpu"
elif args.cudnn:
method = "cudnn"
2018-02-24 21:13:27 +00:00
fm = FFMPEG("\"" + FFMPEG_PATH + "ffmpeg.exe\"", args.output)
w2 = WAIFU2X(WAIFU2X_PATH, method)
2018-02-24 21:13:27 +00:00
# Extract Frames
if not os.path.isdir(FOLDERIN):
os.mkdir(FOLDERIN)
2018-02-25 03:52:04 +00:00
fm.extract_frames(args.video, FOLDERIN)
2018-02-24 21:13:27 +00:00
info = get_vid_info()
2018-02-25 03:52:04 +00:00
# Framerate is read as fraction from the json dictionary
2018-02-24 21:13:27 +00:00
width, height, framerate = info["streams"][0]["width"], info["streams"][0]["height"], float(Fraction(info["streams"][0]["avg_frame_rate"]))
print("Framerate: ", framerate)
final_resolution = str(width * int(args.factor)) + "x" + str(height * int(args.factor))
# Upscale Frames
if not os.path.isdir(FOLDEROUT):
os.mkdir(FOLDEROUT)
2018-04-20 17:00:51 +00:00
w2.upscale(FOLDERIN, FOLDEROUT, int(args.factor) * width, int(args.factor) * height, args.model_type)
2018-02-24 21:13:27 +00:00
# Frames to Video
fm.to_vid(framerate, final_resolution, FOLDEROUT)
# Extract and press audio in
fm.extract_audio(args.video, FOLDEROUT)
2018-02-25 03:52:04 +00:00
fm.insert_audio_track("output.mp4", FOLDEROUT)
2018-02-24 21:13:27 +00:00
processArguments()
2018-02-25 03:52:04 +00:00
# Check if arguments are valid / all necessary argument
# values are specified
if not args.video:
print("Error: You need to specify the video to process")
exit(1)
elif not args.output:
print("Error: You need to specify the output video name")
exit(1)
elif not args.cpu and not args.gpu and not args.cudnn:
print("Error: You need to specify the enlarging processing unit")
exit(1)
2018-02-25 03:52:04 +00:00
if __name__ == '__main__':
try:
2018-04-20 17:00:51 +00:00
video2x()
2018-02-25 03:52:04 +00:00
except Exception as e:
# This code block is reserved for future
# fail-safe handlers
traceback.print_exc()