Skip to content

Commit

Permalink
TIL: create a m3u playlist
Browse files Browse the repository at this point in the history
  • Loading branch information
pew committed Dec 25, 2024
1 parent 88ddf61 commit 2a55b9f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions gist/create m3u playlists.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
date created: Wednesday, December 25th 2024, 12:37:20 pm
date modified: Wednesday, December 25th 2024, 12:40:11 pm
tags:
---

# create m3u playlists

tl;dr: m3u playlist files are just a text file with the list of file names

## files in the same directory

```shell
ls -1 *.mp3 > playlist.m3u
```

## current directory and subdirectories

```shell
find . -type f -iname "*.mp3" | sort > playlist.m3u
```

## absolute paths

```shell
find "$(pwd)" -type f -iname "*.mp3" | sort > playlist.m3u
```

0 comments on commit 2a55b9f

Please sign in to comment.