This shows you the differences between two versions of the page.
|
car [2014/11/10 15:36] dlicious Add oil filter info |
car [2014/12/11 19:51] (current) dlicious Added section for USB audio file prep |
||
|---|---|---|---|
| Line 55: | Line 55: | ||
| | Air conditioning refrigerant | | I | | I | | I | | I | | I | | | I | | I | | I | | | I | | I | | | Air conditioning refrigerant | | I | | I | | I | | I | | I | | | I | | I | | I | | | I | | I | | ||
| + | |||
| + | ===== Prepping audio for the USB support ===== | ||
| + | |||
| + | Remove Amarok moodbar metadata | ||
| + | |||
| + | rm .*.mood | ||
| + | |||
| + | Convert to MP3 (ugh) | ||
| + | |||
| + | for file in *.ogg; do echo "Processing ${file}"; sox "${file}" "$(basename ${file} .ogg).mp3"; done | ||
| + | for file in *.flac; do echo "Processing ${file}"; sox "${file}" "$(basename ${file} .flac).mp3"; done | ||
| + | |||
| + | Remove old files | ||
| + | |||
| + | rm *.ogg *.flac | ||
| + | |||
| + | Rename files for maximum use of limited screen real estate | ||
| + | |||
| + | lltag --no-tagging --yes --quiet --rename '%n %t' *.mp3 | ||