New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

spotify-to-ytmusic

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spotify-to-ytmusic

Convert songs from Spotify to YouTube Music!

  • 1.0.7-2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-58.33%
Maintainers
1
Weekly downloads
 
Created
Source

Spotify to YouTube Music

Convert songs from Spotify to YouTube Music!

Changelog

  • The authentication is now handled by spotify-to-ytmusic, only using a Client ID & Client Secret, the previously required Redirect URI & Access Token are not needed anymore.
  • spotify-to-ytmusic is now much faster.

Installation

npm install spotify-to-ytmusic

Usage

  • To use Spotify to YouTube Music, first you need to provide your Spotify Credentials (Client ID & Client Secret), in order to have access to the Spotify API.
  • You can only provide Spotify Tracks (Playlists / Albums / Podcasts are not supported)

Example

const SpotifyToYoutubeMusic = require('spotify-to-ytmusic')

async function example() {

    // Set Spotify Credentials

    const spotifyToYoutubeMusic = await SpotifyToYoutubeMusic({
        clientID: "CLIENT_ID",
        clientSecret: "CLIENT_SECRET",
        accessToken: "ACCESS_TOKEN" // Optional
    })

    // Convert a Spotify Track

    let song = await spotifyToYoutubeMusic('4cOdK2wGLETKBW3PvgPWqT')
    console.log(song) // https://www.youtube.com/watch?v=lYBUbBu4W08
}

example()

Other ways to provide a Spotify Track:

await spotifyToYoutubeMusic('https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT')

await spotifyToYoutubeMusic('spotify:track:4cOdK2wGLETKBW3PvgPWqT')

await spotifyToYoutubeMusic('https://api.spotify.com/v1/tracks/4cOdK2wGLETKBW3PvgPWqT')

await spotifyToYoutubeMusic(['4cOdK2wGLETKBW3PvgPWqT','06JvOZ39sK8D8SqiqfaxDU'])

Note

This system is not 100% perfect, and sometimes will not get the right song(s) from YouTube Music.

Keywords

FAQs

Package last updated on 05 Jun 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc