Skip to content

Commit

Permalink
fixed wrong name for an argument.
Browse files Browse the repository at this point in the history
Signed-off-by: Xuesong Yang <[email protected]>
  • Loading branch information
XuesongYang committed Feb 23, 2023
1 parent adcac0a commit 593fe5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ def main(cfg):
output_durations += output_duration
output_entries.append(output_entry)

write_manifest(manifest_path=str(output_manifest_path), entries=output_entries)
write_manifest(output_path=str(output_manifest_path), target_manifest=output_entries)
if filter_file:
write_manifest(manifest_path=str(filter_file), entries=filtered_entries)
write_manifest(output_path=str(filter_file), target_manifest=filtered_entries)

logging.info(f"Duration of original audio: {original_durations / 3600} hours")
logging.info(f"Duration of processed audio: {output_durations / 3600} hours")
Expand Down

0 comments on commit 593fe5e

Please sign in to comment.