Created
July 14, 2022 08:58
-
-
Save 41y08h/ff67e1b6def32664eb438955ea7dce10 to your computer and use it in GitHub Desktop.
death_note_audio_filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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