Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sansa_fuze [2017/07/29 15:26] – created beandog | sansa_fuze [2021/10/18 01:36] (current) – [RockBox] beandog | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Sansa Fuze ====== | ====== Sansa Fuze ====== | ||
+ | |||
+ | ==== RockBox ==== | ||
* [[https:// | * [[https:// | ||
+ | |||
+ | * MPEG-2 video | ||
+ | * MP3 audio | ||
+ | * Width x height: 220x176 | ||
+ | * Video bitrate: 384k | ||
+ | * Audio bitrate: 96k | ||
+ | |||
+ | < | ||
+ | ffmpeg -i video.mp4 -vcodec mpeg2video -s 220x176 -vb 384k -acodec mp3 -ab 96k -y video.mpg | ||
+ | </ | ||
+ | |||
+ | I added a udev rule in ''/ | ||
+ | |||
+ | < | ||
+ | SUBSYSTEM==" | ||
+ | </ | ||
+ | |||
+ | When mounting the drive, use '' | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | Copying large amounts of files to the internal disk will overwork the poor little device, and segfault RockBox usually at some point. Just run an fsck on the VFAT block device, and keep going. For the SD card that can go in there, use a modern card reader. :) | ||
+ | |||
+ | < | ||
+ | fsck.vfat /dev/sdf | ||
+ | </ | ||
+ | |||
+ | Block size of a VFAT filesystem is 512k, so using rsync, you'll see it averaging around that speed limit. | ||
+ | |||
+ | Sometimes your filesystem is really jacked, and needs some rescue. See [[http:// | ||
+ | |||
+ | < | ||
+ | sudo ./fsck.fat -r -l -v -t -y /dev/sansa | ||
+ | </ | ||
+ | |||
+ | ==== Rockbox ==== | ||
+ | |||
+ | Building RockBox from source isn't too bad ... if you're patient. :) | ||
+ | |||
+ | Download 3.14 source code [[http:// | ||
+ | |||
+ | cd into '' | ||
+ | |||
+ | < | ||
+ | chmod +x *.pl *.sh configure genlang | ||
+ | </ | ||
+ | |||
+ | Run '' | ||
+ | |||
+ | Make a build dir outside of the tools directory, and run '' | ||
+ | |||
+ | < | ||
+ | mkdir ../build | ||
+ | cd ../build | ||
+ | ../ | ||
+ | </ | ||
+ | |||
+ | The target for the Sansa Fuze is 58. | ||
+ | |||
+ | Run '' |