Skip to content

Instantly share code, notes, and snippets.

@41y08h
Created July 14, 2022 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 41y08h/ff67e1b6def32664eb438955ea7dce10 to your computer and use it in GitHub Desktop.
Save 41y08h/ff67e1b6def32664eb438955ea7dce10 to your computer and use it in GitHub Desktop.
death_note_audio_filter
// Pitch change without affecting duration
./ffmpeg -i elle-raw.mp3 -af "asetrate=48000*0.8, aresample=48000, atempo=1/0.8" track1.mp3
// Merge tracks
./ffmpeg -i elle-raw.mp3 -i track1.mp3 -filter_complex amix=inputs=2:duration=longest output.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment