Skip to content

Commit

Permalink
- Changed code to launch .exe
Browse files Browse the repository at this point in the history
* This allows it to be completely portable against all x64 bit windows systems
  • Loading branch information
jessielw committed Oct 7, 2020
1 parent d37682e commit 45d17c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FFMPEGAudioEncoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
fdkaac = '"Apps/fdkaac/fdkaac.exe"'
qaac = '"Apps/qaac/qaac64.exe"'
mpv_player = '"Apps/mpv/mpv.exe"'
youtube_dl_gui = "Youtube-DL-Gui.pyw"
youtube_dl_gui = "Youtube-DL-GUI.exe"

# About Window --------------------------------------------------------------------------------------------------------
def openaboutwindow():
Expand Down Expand Up @@ -94,7 +94,7 @@ def mpv_gui_main_gui():

# Opens Youtube-DL-Gui ------------------------------------------------------------------------------------------------
def open_youtube_dl_gui():
subprocess.Popen(['python', youtube_dl_gui])
subprocess.Popen(youtube_dl_gui)

# ------------------------------------------------------------------------------------------------------ Youtube-DL-Gui

Expand Down

0 comments on commit 45d17c8

Please sign in to comment.