mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
26 lines
583 B
Python
26 lines
583 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Name: FFMPEG Class
|
|
Author: K4YT3X
|
|
Date Created: Feb 24, 2018
|
|
Last Modified: Feb 24, 2018
|
|
|
|
Description: This class controls waifu2x
|
|
engine
|
|
|
|
Version 1.0
|
|
"""
|
|
|
|
import os
|
|
|
|
|
|
class WAIFU2X:
|
|
|
|
def __init__(self, waifu2x_path, method):
|
|
self.waifu2x_path = waifu2x_path
|
|
self.method = method
|
|
|
|
def upscale(self, folderin, folderout, width, height):
|
|
os.system("{} -p {} -I png -i {} -e png -o {} -w {} -h {} -n 3 -m noise_scale -y photo".format(self.waifu2x_path, self.method, folderin, folderout, width, height))
|