Skip to content

Commit

Permalink
fix!: reduce loglevel to error
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpavlock committed Nov 21, 2022
1 parent 910bc7a commit 867311d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moe_transcode/transcode_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def _transcode_path(path: Path, to_format: TranscodeFormat, out_path: Path) -> N
This is a separate function in order to support multiprocessing.
"""
args = shlex.split(
f"ffmpeg -i '{path.resolve()}' "
f"ffmpeg -loglevel error -i '{path.resolve()}' "
f"-codec:a libmp3lame {FFMPEG_MP3_ARG[to_format]} '{out_path.resolve()}'"
)
subprocess.run(args)

0 comments on commit 867311d

Please sign in to comment.