IPod-Shuffle-4g/README.md

35 lines
1.1 KiB
Markdown
Raw Normal View History

2013-10-11 20:44:27 +05:30
# IPod Shuffle 4g Scripts
##shuffle.py
Python script for building the Track and Playlist database for the newer gen IPod Shuffle.
Forked from the [shuffle-db-ng project](https://code.google.com/p/shuffle-db-ng/)
Just put your audio files into the mass storage of your IPod and shuffle.py will do the rest
```bash
$ python shuffle.py -h
2013-10-12 23:42:34 +05:30
usage: shuffle.py [-h] [--disable-voiceover] [--rename-unicode] path
2013-10-11 20:44:27 +05:30
positional arguments:
path
optional arguments:
-h, --help show this help message and exit
2013-10-12 23:42:34 +05:30
--disable-voiceover Disable Voiceover Feature
--rename-unicode Rename Files Causing Unicode Errors, will do minimal
required renaming
2013-10-11 20:44:27 +05:30
```
2013-10-11 20:48:02 +05:30
#### Additions to the original
2013-10-11 20:44:27 +05:30
* Option to disable voiceover
* Initialize the IPod Directory tree
2013-10-12 23:42:34 +05:30
* Using the --rename-unicode flag, filenames with strange characters and different language are renamed which avoids the script to crash with a Unicode Error
2013-10-11 20:48:02 +05:30
##TODO
* Last.fm Scrobbler
* Qt frontend
2013-10-12 23:42:34 +05:30
##EXTRA READING
* [I wrote about how to use this script with Rhythmbox for easy syncing of playlists and songs](http://nims11.wordpress.com/2013/10/12/ipod-shuffle-4g-under-linux/)