Advanced Playlist Generation
This page describes how to generate playlist (txt) files from folders. These examples assume that your songs are in mp3 format; if you are using a different format, replace mp3
with your format in all provided commands.
Windows (Desktop)#
- Open Powershell in the folder with your songs (you can Shift-Right-Click and select Open Powershell Window Here from within an Explorer window)
- Run
Get-ChildItem . -Filter *.mp3 -Recurse | % { $_.FullName } | out-file -encoding ASCII songs.txt
- Move songs.txt to your Playlists folder and rename it to whatever you want the playlist to be called.
- Edit songs.txt if you want to add additional songs or any other comments
Linux (Command Line)#
- Navigate to the folder with yours songs (
cd /path/to/the/folder
) - Run
find "$(pwd)" | grep ".mp3" > songs.txt
- Move
songs.txt
to your Playlists folder and rename it (mv songs.txt /path/to/Playlists/playlistname.txt
)