update gnokii tips

This commit is contained in:
Colin McMillen 2021-07-01 19:21:33 -04:00
parent 568501f35d
commit 8b0570438c

View File

@ -14,7 +14,7 @@ I own a Nokia 6102i phone (provided by Cingular). [gnokii](http://gnokii.org) is
Voice mail picks up in 20 seconds, so a ring tone should be about 20 seconds long.
The easiest way to chop an MP3 in Linux is with dd; the drawback is that you need to specify length in KB, not time. To chop an MP3 to be 200 KB long, do:
The easiest way to chop an MP3 in Linux is with `dd`; the drawback is that you need to specify length in KB, not time. To chop an MP3 to be 200 KB long, do:
`dd if=Mii\ Channel.mp3 of=MiiChan2.mp3 bs=1k count=200`