Skip to content

Commit

Permalink
fix: invalid var (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyrch authored Nov 29, 2023
1 parent f7ce09a commit 3ff73fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion batch_encoder/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def audio_filters_options(output_name):
if float(af[fadein]) > 0:
af_list.append(AudioFilter.FADE_IN.toText(af[fadein]))
if float(af[fadeout]['Exp']) > 0:
af_list.append(AudioFilter.FADE_OUT.toText(af[fadeout]['Start Time'], af[fadein]['Exp']))
af_list.append(AudioFilter.FADE_OUT.toText(af[fadeout]['Start Time'], af[fadeout]['Exp']))
if float(af[mute]['Start Time']) > 0 or float(af[mute]['End Time']) > 0:
af_list.append(AudioFilter.MUTE.toText(af[mute]['Start Time'], af[mute]['End Time']))
if len(af[custom]) > 0:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='animethemes-batch-encoder',
version='2.2.1',
version='2.2.2',
author='AnimeThemes',
author_email='admin@animethemes.moe',
url='https://github.com/AnimeThemes/animethemes-batch-encoder',
Expand Down

0 comments on commit 3ff73fd

Please sign in to comment.