mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2025-02-22 21:20:07 +01:00
19 lines
406 B
Python
19 lines
406 B
Python
"""
|
|
Run the application
|
|
"""
|
|
import sys
|
|
import subprocess
|
|
|
|
generate_files = False
|
|
|
|
# generate_files = True
|
|
|
|
if __name__ == "__main__":
|
|
if generate_files:
|
|
import time
|
|
subprocess.Popen(r"powershell.exe B:\boska\Documents\Dilan\Dropbox\Github\ultimatevocalremovergui\src\UIFileConverter.ps1",
|
|
shell=True)
|
|
time.sleep(4)
|
|
from src import app
|
|
app.run()
|