Skip to content

bmatcuk/Create-Playlist.workflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Create-Playlist.workflow

An OSX Automator Workflow for creating relative-pathed m3u playlists from audio files in the selected folder.

Installation

To install, simply git clone https://github.com/bmatcuk/Create-Playlist.workflow.git ~/Library/Services/Create-Playlist.workflow. You may need to "open" the workflow to get it to appear in the Services menu. To do that, just navigate to ~/Library/Services and double click Create-Playlist.workflow to open it in Automator. You don't need to do anything here; just close Automator.

You may also encounter permission problems (it will appear locked in Automator). To fix that in your terminal, run the following commands:

chown -R "$(id -un):$(id -gn)" ~/Library/Services/Create-Playlist.workflow
chmod -R 0755 ~/Library/Services/Create-Playlist.workflow

The first command ensures that the current user owns the files, and the second ensures that you have read, write, and execute permission.

To use, open a Finder window and locate a folder for which you want to create a playlist. Right click on this folder and select Services, Create-Playlist. In a moment, a file will be created in the current folder with the same name as the folder you selected and the .m3u extension. You can also select multiple folders. Right click and select Services, Create Playlist as before and you'll get a .m3u file for each folder selected! Note: There may be a limit to the number of folders the workflow can process at a time...

This script will find .mp3, .aac, .m4a, .wav, .wma, .flac, .ogg, .pcm, .aiff, and .alac files. If there are any others you think it should support, file an Issue.

How Does it Work?

This is an Automator workflow that runs a simple shell script. The script loops through the arguments (the selected folders, in this case), switches to that folder, and then searches for audio files recursively. Whenever an audio file is found, it is appended to the m3u file using some appropriate formatting.

Why?

My car can read music off a USB keychain drive. It seems to understand artists and albums from the MP3 headers, but it just ends up playing songs in alphabetic order by filename. I could rename all my files so they'll end up playing in the order I'd like... but my car also understands m3u files. It seemed easier to make this work =)

About

An OSX Automator Workflow for creating relative-pathed m3u playlists from audio files in the selected folder.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published