https://github.com/g3n35i5/itunesandroidplaylistmanager
Import M3U playlists into the Android app "RocketPlayer".
https://github.com/g3n35i5/itunesandroidplaylistmanager
adb android itunes parser playlist python rocketplayer sqlite3
Last synced: about 2 months ago
JSON representation
Import M3U playlists into the Android app "RocketPlayer".
- Host: GitHub
- URL: https://github.com/g3n35i5/itunesandroidplaylistmanager
- Owner: g3n35i5
- Created: 2018-02-15T15:13:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-15T15:26:05.000Z (over 8 years ago)
- Last Synced: 2025-06-03T02:25:39.458Z (about 1 year ago)
- Topics: adb, android, itunes, parser, playlist, python, rocketplayer, sqlite3
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iTunesAndroidPlaylistManager
I wrote this parser to import playlists exported from iTunes into the app
"Rocket Player" on my Android smartphone.
## Setup
First, the paths to the respective directories on Windows and Android must
be set in the `PlaylistManager.py` file. An example would be
```
WINDOWS_MUSIC_PATH = 'E:\Music\'
```
for the windows path and
```
ANDROID_MUSIC_PATH = '/storage/sdcard/music/'
```
for the path on the smartphone.
## Usage
Copy the exported playlists to the playlist folder in this project. The format
must correspond to that of the file `example. m3u`. By the way: You don't have
to delete this file, it will be ignored by the program.
Make sure the Android tools are installed on your computer and an adb server is
running in root mode. This is necessary because the app directories on the
smartphone can only be used by root users.
Furthermore, the ADB connection on the smartphone must first be confirmed and
allowed.
Start the program with the command
```bash
$ python3 PlaylistManager.py
```