Skip to content

Commit 05a03ca

Browse files
committed
Progress bar, use canonical audio name
1 parent e2f4c39 commit 05a03ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto_editor/edit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def make_media(tl: v3, output_path: str) -> None:
376376
name = output_stream.codec.canonical_name
377377
encoder_titles.append(name if no_color else f"\033[95m{name}")
378378
if audio_streams:
379-
name = audio_streams[0].name
379+
name = audio_streams[0].name.canonical_name # type: ignore
380380
encoder_titles.append(name if no_color else f"\033[96m{name}")
381381
if subtitle_streams:
382382
name = subtitle_streams[0].name

0 commit comments

Comments
 (0)