Os dependant logging checks, Muted Log for Windows

This commit is contained in:
Zen 2020-01-13 19:56:33 +02:00
parent b035b3c52b
commit b290cf329e

View file

@ -5,6 +5,7 @@ Option for KeyFrame Separation
Fix error if no audio stream Fix error if no audio stream
Windows PySceneDetect fail Windows PySceneDetect fail
""" """
import sys
import os import os
import shutil import shutil
from os.path import join from os.path import join
@ -88,7 +89,11 @@ class Av1an:
self.args = parser.parse_args() self.args = parser.parse_args()
if self.logging != self.args.logging: if self.logging != self.args.logging:
self.logging = f'&>> {self.args.logging}.log' if sys.platform == 'linux':
self.logging = f'&>> {self.args.logging}.log'
#else:
# self.logging = f'> {self.args.logging}.log'
os.system(f'echo " Av1an Logging "> {self.args.logging}.log') os.system(f'echo " Av1an Logging "> {self.args.logging}.log')
def determine_resources(self): def determine_resources(self):