An open API service indexing awesome lists of open source software.

https://github.com/mdp/pls

Parse PLS files (Typically MP3 stream playlists)
https://github.com/mdp/pls

Last synced: 10 months ago
JSON representation

Parse PLS files (Typically MP3 stream playlists)

Awesome Lists containing this project

README

          

# PLS
Parse PLS files.

## Usage
### Node
``` javascript
var pls = require('pls');

var tracks = pls.parse(somePLSText);
console.log(tracks[0].uri) // => "https://stream.mp3.com:8080"
```

### Browser
```javascript
var tracks = window.PLS.parse(somePLSText);
```