C.W.K.
Stream
Lesson 08 of 10 · published

Audio Mixing

~10 min · mix, amix, background, voiceover

Level 0Viewer
0 XP0/73 lessons0/15 achievements
0/100 XP to next level100 XP to go0% complete

두 패턴이 mixing 대부분 커버

  • amix — N input 한 stream 으로 mix. Input 별 weight. 'voice + 배경 음악' 에 좋음.
  • amerge — N input 한 multi-channel stream 으로 결합. Track 분리 유지하면서 한 파일에 (예: 두 mono 에서 stereo 생성).

Voice over music — recipe

-14 dB 의 배경 음악이 voice 아래에 편히. Mixing 전에 음악 input 에 volume 사용. 라디오-style ducking (voice 있을 때 음악 자동 quiet) 엔 sidechaincompress.

Code

Voice + 배경 음악·bash
# 단순 mix: voice full volume, music -14 dB
ffmpeg -i voice.wav -i music.mp3 \
  -filter_complex "[1:a]volume=-14dB[bg]; [0:a][bg]amix=inputs=2:duration=first:dropout_transition=0" \
  -c:a aac -b:a 192k mixed.m4a

# duration=first → voice 끝나면 output 끝 (silent music 으로 pad 안 함)
# duration=longest → 가장 긴 input 만큼 output
Sidechain compression — radio-style ducking·bash
# Voice 재생할 때 음악 자동 quiet
ffmpeg -i voice.wav -i music.mp3 \
  -filter_complex "[1:a][0:a]sidechaincompress=threshold=0.05:ratio=8:level_sc=0.6[bg]; \
                   [0:a][bg]amix=inputs=2:duration=first" \
  -c:a aac -b:a 192k mixed_ducked.m4a

External links

Exercise

30초 voice clip 과 60초 배경 음악 페어. -14 dB 음악 simple recipe 로 mix. 들어 — dialogue 명확? 그 다음 sidechaincompress ducking 추가하고 비교. 어느 mix 가 실제로 선호? 자기 podcast workflow 에 어느 게 default 가 돼?

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.