You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Awesome work on this project. Many thanks. This saved me a lot of pain extracting some audio I recorded to a "creative" tonie that I thought was lost for good. This is not really an issue but a suggestion for an addition to the wiki:
Linux users can follow the following procedure to get mp3 files from the device:
this procedure does not damage the device but may invalidate the warranty!!!
Take box apart and extract the SD card (carefully!)
Use card reader to copy all the files from the CONTENT folder on the card to your PC.
Replace SD card (carefully!)
Put box back together and make sure it works
Go through all the folders in the extracted content and in each
run: $ mv {name of file} audio.ton this just renames the file to something more useful
run: $ dd bs=4092 skip=1 if=audio.ton of=trim.ogg this removes the tonies header from the file and leaves plain ogg data
run: $ ffmpeg -i trim.ogg done.mp3 this extracts the ogg format audio and reencodes it to a local file called done.mp3
Now you can test that done.mp3 plays, which it should if the header size is not something unusual. You can change the header size in the dd command if needed (the bs parameter). Note that I found a header size of 4096 on a creative tonie vs 4092 on standard ones.
Also, dont rip anything illegally!!
The text was updated successfully, but these errors were encountered:
Awesome work on this project. Many thanks. This saved me a lot of pain extracting some audio I recorded to a "creative" tonie that I thought was lost for good. This is not really an issue but a suggestion for an addition to the wiki:
Linux users can follow the following procedure to get mp3 files from the device:
this procedure does not damage the device but may invalidate the warranty!!!
$ mv {name of file} audio.ton
this just renames the file to something more useful$ dd bs=4092 skip=1 if=audio.ton of=trim.ogg
this removes the tonies header from the file and leaves plain ogg data$ ffmpeg -i trim.ogg done.mp3
this extracts the ogg format audio and reencodes it to a local file called done.mp3Also, dont rip anything illegally!!
The text was updated successfully, but these errors were encountered: