
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
tidal-streamer
Advanced tools
A server that enables streaming TIDAL music to a TIDAL connect device without using TIDAL app. This can be useful for a [Vinyl Emulator](https://www.hackster.io/mark-hank/sonos-spotify-vinyl-emulator-3be63d) for instance.
A server that enables streaming TIDAL music to a TIDAL connect device without using TIDAL app. This can be useful for a Vinyl Emulator for instance.
tidal-streamer relies on the mdns package which itself has some system depenencies. Please check the mdns installation guide else the following command will fail. Once done you can install dependencies:
npm install
You need to specify a valid TIDAL API application client_id and client_secret. You can get those by creating an App on the TIDAL Developer Portal. Once you have created it, renameconfig.sample.yml to config.yml and replace the app section with:
app:
client_id: <YOUR_CLIENT_ID>
client_secret: <YOUR_CLIENT_SECRET>
You can now run the server. It will display a link you need to navigate to authorize it. After that you are all good: the server will display the port it is listening on so! Now it's time to build whatever app you have in mind such as an Android TV app!
| Path | Method | Parameters | Explanation |
|---|---|---|---|
/user/feed | GET | none | Get user feed |
/user/shortcuts | GET | none | Get user shortcuts |
/user/artists | GET | none | Get user artists |
/user/albums | GET | none | Get user albums |
/user/playlists | GET | none | Get user playlists |
/user/tracks | GET | none | Get user tracks |
/user/mixes | GET | none | Get user mixes |
/user/new/albums | GET | none | Get new albums |
/user/new/tracks | GET | None | Get new tracks |
/user/recent/albums | GET | none | Get recent albums |
/user/recent/artists | GET | none | Get recent artists |
/user/recommended/albums | GET | none | Get recommended albums |
| Path | Method | Parameters | Explanation |
|---|---|---|---|
/info/album/:id | GET | album id | Get album information |
/info/playlist/:id | GET | album id | Get playlist information |
/info/artist/:id/albums | GET | album id | Get artist's albums |
/info/artist/:id/singles | GET | album id | Get artist's singles |
/info/artist/:id/compilations | GET | album id | Get artist's compilations |
/info/artist/:id/toptracks | GET | album id | Get artist's top tracks |
/info/artist/:id/radio | GET | album id | Get artist's radio |
/info/artist/:id/similar | GET | album id | Get similar artists |
/info/genres | GET | none | Get genres |
/info/genre/:id/tracks | GET | genre id | Get tracks of a genre |
/info/mix/:id/tracks | GET | mix id | Get tracks of a mix |
/lyrics/:id | GET | track id | Get track lyrics |
/search/artist | GET | query | Search for artists |
/search/album | GET | query | Search for albums |
/search/track | GET | query | Search for tracks |
/search/track/digest | GET | query | Search for tracks (digest) |
| Path | Method | Parameters | Explanation |
|---|---|---|---|
/list | GET | none | List available devices |
/ping | GET | none | Ping the server |
/status | GET | none | Get status of a device |
/play/tracks | POST | body, position | Play tracks |
/play/album/:id | GET | id, position | Play an album |
/play/playlist/:id | GET | id, position | Play a playlist |
/play/mix/:id | GET | id, position | Play a mix |
/enqueue/:position | POST | body, position | Enqueue tracks |
/dequeue/:position | POST | position | Dequeue a track |
/reorderqueue/:from/:to | POST | from, to | Reorder the queue |
/play | POST | none | Play the current track |
/pause | POST | none | Pause the current track |
/stop | POST | none | Stop the current track |
/next | POST | none | Play the next track |
/prev | POST | none | Play the previous track |
/trackseek/:position | POST | position | Seek to a specific track position |
/timeseek/:progress | POST | progress | Seek to a specific time |
/volume/down | POST | none | Decrease the volume |
/volume/up | POST | none | Increase the volume |
| Path | Method | Parameters | Explanation |
|---|---|---|---|
/playlist/create | POST | title, description | Create a playlist |
/playlist/add | POST | playlistId, trackIds | Add tracks to a playlist |
If you want the server to listen on specific ports, you can configure this in config.yml:
port: 8000
wsport: 8001
If you have multiple TIDAL connect devices, you can specify which one to stream to by adding it's friendly name or IPv4 address in config.yml:
device: My TIDAL connect device
FAQs
A server that enables streaming TIDAL music to a TIDAL connect device without using TIDAL app. This can be useful for a [Vinyl Emulator](https://www.hackster.io/mark-hank/sonos-spotify-vinyl-emulator-3be63d) for instance.
The npm package tidal-streamer receives a total of 0 weekly downloads. As such, tidal-streamer popularity was classified as not popular.
We found that tidal-streamer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.