Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpet23/Export-iTunes-Playlists
Script to export playlists from iTunes to a folder. Can now export from iTunes to Android.
https://github.com/dpet23/Export-iTunes-Playlists
android applescript automation itunes-mac macos
Last synced: 15 days ago
JSON representation
Script to export playlists from iTunes to a folder. Can now export from iTunes to Android.
- Host: GitHub
- URL: https://github.com/dpet23/Export-iTunes-Playlists
- Owner: dpet23
- License: gpl-3.0
- Created: 2018-01-05T08:11:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-13T11:08:51.000Z (about 3 years ago)
- Last Synced: 2024-08-01T02:26:12.186Z (3 months ago)
- Topics: android, applescript, automation, itunes-mac, macos
- Language: AppleScript
- Homepage:
- Size: 575 KB
- Stars: 11
- Watchers: 5
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Export iTunes Playlists
A script to export playlists from iTunes to a folder. Includes the song files and an m3u playlist file.
Created to easily export playlists and media from iTunes to Android.
[![Download latest](https://img.shields.io/badge/link-this%20repo-blue.svg)](https://github.com/dpet23/Export-iTunes-Playlists)
[![Download latest](https://img.shields.io/badge/download-latest-blue.svg)](https://github.com/dpet23/Export-iTunes-Playlists/releases/latest)---
**NOTE:**
* This script will work only with iTunes on OS X and macOS. It's written in AppleScript, a language built into the Mac operating system since Mac OS 7.
* Tested with:
* macOS 10.11.6 - 10.14.6
* iTunes 12.4.3 - 12.9.5.5---
## How to use
### The script
1. Compile the script. This can be done in various ways:
* Use the Makefile; or
* Compile and export as an application from the Script Editor app
1. Run the app.### Integrate into iTunes
1. Compile the script
1. Move the app to `~/Library/iTunes/Scripts/`
* The `make deploy` command compiles the script and moves the app to the correct location.
1. Open iTunes.
1. The script can be run by opening iTunes's Script menu (scroll icon) and selecting the script's name.### Makefile
| Rule | Description |
| --- | --- |
| `make` | Build an app, and save it to this directory |
| `make deploy` | Build an app, and move it to `~/Library/iTunes/Scripts/` |
| `make exportplaylists` | Build an app from the `ExportPlaylists` script |
| `make clean` | Remove all apps from this directory |
| `make clean-deploy` | Remove the app from `~/Library/iTunes/Scripts/` |---
## Options
The options that can be set before exporting:* The playlists to export (one or more can be chosen).
* The location in which to export.
* The method in which to export multiple playlists:
* Same folder - Creates a new folder and places all songs from all playlists there. All m3u playlist files are saved to a subfolder.
* Different folders - Makes separate subfolders for each playlist. The m3u playlist is saved in this folder, and a further subfolder is made for the media files.
* The folder structure and filename rules to use for the media files.
* Can use the iTunes metadata. Available attributes are: `[album]`, `[album artist]`, `[artist]`, `[composer]`, `[track name]`, `[track number]`, `[disc number]`, `[playlist order number]`, `[original file name]`.
* These attributes can be used to form the folder structure and filename.
For example: `[artist] > [album] > [track number] - [track name]`
- This will create `//[artist]/[album]/file.extension`.
- The file will be renamed to `[track number] - [track name]`, and its original extension will be kept.---
## Why use the script?
iTunes already has an option to export a playlist. This creates a playlist file in several formats (`m3u`, `xml`, etc.), but doesn't export the actual media files, which can make it difficult to use the exported playlists on other devices.
The script makes a copy of all media files in a playlist alongside the `m3u` file. However, `m3u` is the only format supported.