Skip to content

Instantly share code, notes, and snippets.

@stnbu
Created February 20, 2015 14:33
Show Gist options
  • Save stnbu/fe1f4ef84df3e3d1f51b to your computer and use it in GitHub Desktop.
Save stnbu/fe1f4ef84df3e3d1f51b to your computer and use it in GitHub Desktop.
Create a Custom iPhone Ringtone (at least as of OSX8)
This was slow and painful, but relative to the "iTunes" way of doing it, it's downright elegant.
This:
http://everydaylht.com/howtos/desktop/create-ringtones-for-your-iphone-using-linux/
Is basically spot-on, even for OSX8. I had some bumps and took some notes.
I used Audacity to create a wav file. Then:
$ faac -b 128 -c 44100 -w --title shamisen shamisen.wav
$ cp -ai shamisen.m4a shamisen.m4r
Also, the iTunes_Control/Ringtones directory and "iTunes_Control/iTunes/Ringtones.plist" file were both missing for me. I just created them.
I also had to:
$ sudo nvram boot-args="kext-dev-mode=1"
and then reboot, since this is an unsigned kernel extension and OSX v10.10+ won't allow that.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment