diff --git a/scripts/generate_podcast.py b/scripts/generate_podcast.py index af6837f..69ada45 100644 --- a/scripts/generate_podcast.py +++ b/scripts/generate_podcast.py @@ -184,7 +184,7 @@ def merge_audio(segment_files: list[Path], output: Path): list_file = f.name subprocess.run( ["ffmpeg", "-y", "-f", "concat", "-safe", "0", "-i", list_file, - "-c", "copy", str(output)], + "-ar", "44100", "-ac", "2", "-ab", "128k", str(output)], check=True, capture_output=True ) os.unlink(list_file)