1.0.2: changed default ffmpeg hwaccel to auto

This commit is contained in:
K4YT3X 2019-02-26 22:48:47 -05:00
parent 772c1946e8
commit 1506b075cb
2 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
Name: Video2x Config Generator
Author: K4YT3X
Date Created: October 23, 2018
Last Modified: February 8, 2019
Last Modified: February 26, 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.1'
VERSION = '1.0.2'
def get_path(text):
@ -42,9 +42,9 @@ def enroll_settings():
else:
break
settings['ffmpeg_hwaccel'] = Avalon.gets('ffmpeg hardware acceleration method (cuda): ')
settings['ffmpeg_hwaccel'] = Avalon.gets('ffmpeg hardware acceleration method (auto): ')
if settings['ffmpeg_hwaccel'] == '':
settings['ffmpeg_hwaccel'] = 'cuda'
settings['ffmpeg_hwaccel'] = 'auto'
settings['extracted_frames'] = Avalon.gets('Temporary directory for extracted frames (empty for mkdtemp): ')
if settings['extracted_frames'] == '':

View File

@ -4,7 +4,7 @@
Name: Video2X Setup Script
Author: K4YT3X
Date Created: November 28, 2018
Last Modified: February 8, 2019
Last Modified: February 26, 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.1'
VERSION = '1.0.2'
class Video2xSetup:
@ -114,7 +114,7 @@ class Video2xSetup:
settings['waifu2x_path'] = '{}\\video2x\\waifu2x-caffe\\waifu2x-caffe-cui.exe'.format(os.getenv('localappdata'))
settings['ffmpeg_path'] = '{}\\video2x\\ffmpeg-4.1-win64-static\\bin'.format(os.getenv('localappdata'))
settings['ffmpeg_arguments'] = []
settings['ffmpeg_hwaccel'] = 'cuda'
settings['ffmpeg_hwaccel'] = 'auto'
settings['extracted_frames'] = False
settings['upscaled_frames'] = False
settings['preserve_frames'] = False