mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
updated for 2.5.0
This commit is contained in:
parent
e092094742
commit
35e41d0098
@ -4,7 +4,7 @@
|
||||
Name: Video2x Config Generator
|
||||
Author: K4YT3X
|
||||
Date Created: October 23, 2018
|
||||
Last Modified: February 26, 2019
|
||||
Last Modified: March 4, 2019
|
||||
|
||||
Licensed under the GNU General Public License Version 3 (GNU GPL v3),
|
||||
available at: https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
@ -15,7 +15,7 @@ from avalon_framework import Avalon
|
||||
import json
|
||||
import os
|
||||
|
||||
VERSION = '1.0.2'
|
||||
VERSION = '1.0.3'
|
||||
|
||||
|
||||
def get_path(text):
|
||||
@ -25,7 +25,7 @@ def get_path(text):
|
||||
path = Avalon.gets(text)
|
||||
if os.path.isdir(path):
|
||||
return path
|
||||
Avalon.error('{} id not a directory / folder'.format(path))
|
||||
Avalon.error('{} id not a directory/folder'.format(path))
|
||||
|
||||
|
||||
def enroll_settings():
|
||||
@ -36,23 +36,19 @@ def enroll_settings():
|
||||
|
||||
settings['ffmpeg_arguments'] = []
|
||||
while True:
|
||||
argument = Avalon.gets('Extra arguments passed to ffmpeg (empty when done): ')
|
||||
argument = Avalon.gets('Extra arguments passed to ffmpeg (empty=none): ')
|
||||
if argument:
|
||||
settings['ffmpeg_arguments'].append(argument)
|
||||
else:
|
||||
break
|
||||
|
||||
settings['ffmpeg_hwaccel'] = Avalon.gets('ffmpeg hardware acceleration method (auto): ')
|
||||
settings['ffmpeg_hwaccel'] = Avalon.gets('ffmpeg hardware acceleration method (empty=auto): ')
|
||||
if settings['ffmpeg_hwaccel'] == '':
|
||||
settings['ffmpeg_hwaccel'] = 'auto'
|
||||
|
||||
settings['extracted_frames'] = Avalon.gets('Temporary directory for extracted frames (empty for mkdtemp): ')
|
||||
if settings['extracted_frames'] == '':
|
||||
settings['extracted_frames'] = False
|
||||
|
||||
settings['upscaled_frames'] = Avalon.gets('Temporary directory for upscaled frames (empty for mkdtemp): ')
|
||||
if settings['upscaled_frames'] == '':
|
||||
settings['upscaled_frames'] = False
|
||||
settings['video2x_cache_folder'] = Avalon.gets('Video2X cache folder (empty=system default): ')
|
||||
if settings['video2x_cache_folder'] == '':
|
||||
settings['video2x_cache_folder'] = False
|
||||
|
||||
settings['preserve_frames'] = Avalon.ask('Preserve extracted or upscaled frames')
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
Name: Video2X Setup Script
|
||||
Author: K4YT3X
|
||||
Date Created: November 28, 2018
|
||||
Last Modified: February 26, 2019
|
||||
Last Modified: March 4, 2019
|
||||
|
||||
Licensed under the GNU General Public License Version 3 (GNU GPL v3),
|
||||
available at: https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
@ -31,7 +31,7 @@ import zipfile
|
||||
# later in the script.
|
||||
# import requests
|
||||
|
||||
VERSION = '1.0.2'
|
||||
VERSION = '1.0.3'
|
||||
|
||||
|
||||
class Video2xSetup:
|
||||
@ -115,8 +115,7 @@ class Video2xSetup:
|
||||
settings['ffmpeg_path'] = '{}\\video2x\\ffmpeg-4.1-win64-static\\bin'.format(os.getenv('localappdata'))
|
||||
settings['ffmpeg_arguments'] = []
|
||||
settings['ffmpeg_hwaccel'] = 'auto'
|
||||
settings['extracted_frames'] = False
|
||||
settings['upscaled_frames'] = False
|
||||
settings['video2x_cache_folder'] = False
|
||||
settings['preserve_frames'] = False
|
||||
|
||||
with open('video2x.json', 'w') as config:
|
||||
|
Loading…
Reference in New Issue
Block a user