Update indexa.py

This commit is contained in:
JotaChina 2024-07-24 20:54:57 -03:00 committed by GitHub
parent 1d572ee784
commit 8b32868a9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -84,10 +84,10 @@ def process_mmps_in_folder(folder_path):
file_name = os.path.basename(destination_path)
file_name = os.path.splitext(file_name)[0] + ".mmp"
output_file_path = os.path.join(folder_path, file_name)
os.environ['QT_DEBUG_PLUGINS'] = '1'
os.environ['QT_QPA_PLATFORM'] = 'offscreen'
comando = f'lmms --dump "{destination_path}" > "{output_file_path}"'
try:
os.environ['QT_DEBUG_PLUGINS'] = '1'
os.environ['QT_QPA_PLATFORM'] = 'offscreen'
subprocess.run(comando, shell=True, check=True)
print("Comando executado com sucesso!")
except subprocess.CalledProcessError as e: