Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
* Fixed QAAC bug, the "threading" option actually enabled the wrong command. This was fixed in this release.
* Fixed some code that caused spacing errors in rare instances.
  • Loading branch information
jessielw committed Jul 28, 2020
1 parent 8ef8535 commit 7cc86d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FFMPEG Audio Encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def audio_filter_function(*args):
audio_filter_setting = ''
elif dolby_pro_logic_ii.get() == '"aresample=matrix_encoding=dplii"' and \
ffmpeg_gain.get() == '0':
audio_filter_setting = '-af ' + dolby_pro_logic_ii.get()
audio_filter_setting = '-af ' + dolby_pro_logic_ii.get() + ' '
elif dolby_pro_logic_ii.get() == '"aresample=matrix_encoding=dplii"' \
and ffmpeg_gain.get() != '0':
audio_filter_setting = '-af ' + dolby_pro_logic_ii.get() + ',' + \
Expand Down Expand Up @@ -3022,7 +3022,7 @@ def qaac_title_check(*args):
qaac_threading = StringVar()
qaac_threading.set("")
qaac_threading_checkbox = Checkbutton(audio_window, text='Threading',
variable=qaac_threading, onvalue="--no-optimize ",
variable=qaac_threading, onvalue="--threading ",
offvalue="")
qaac_threading_checkbox.grid(row=8, column=1, columnspan=1, padx=10, pady=3, sticky=N + S + E + W)
qaac_threading_checkbox.configure(background="#434547", foreground="white", activebackground="#434547",
Expand Down

0 comments on commit 7cc86d1

Please sign in to comment.