-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Advanced Playlist Generation
John Grosh edited this page Jun 18, 2020
·
1 revision
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.
- 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 } > 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
- 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
)