-
-
Save Ickerday/93dfba6f2023af1a0eec7ebb1db0f2c4 to your computer and use it in GitHub Desktop.
Create iPhone ringtone from any music format using ffmpeg
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
$ brew install ffmpeg | |
$ ffmpeg -i <input.*> -ac 1 -ab 128000 -f mp4 -acodec aac -y -ss <beggining_second> -t <length_in_seconds> output.m4r # Length can't be higher than 30 seconds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment