Skip to content

Commit

Permalink
process language argument
Browse files Browse the repository at this point in the history
  • Loading branch information
MahmoudAshraf97 committed Oct 10, 2024
1 parent 1aa9f9a commit 2d1c2e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion diarize.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
)

args = parser.parse_args()
language = process_language_arg(args.language, args.model_name)
language = process_language_arg(args.language)

if args.stemming:
# Isolate vocals from the rest of the audio
Expand Down
2 changes: 1 addition & 1 deletion diarize_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
)

args = parser.parse_args()
language = process_language_arg(args.language, args.model_name)
language = process_language_arg(args.language)

if args.stemming:
# Isolate vocals from the rest of the audio
Expand Down

0 comments on commit 2d1c2e0

Please sign in to comment.