New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-shazam

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-shazam

Node API for Shazam

latest
Source
npmnpm
Version
1.2.7
Version published
Maintainers
2
Created
Source

Node-Shazam

A library to interact with the Shazam API

This is based on Node-Shazam-API with most features added from ShazamIO

Installation

npm install node-shazam

Documentation

Documentation can be found here

Example usage

Recognise track from file


//ESM
import {Shazam} from 'node-shazam'
const shazam = new Shazam()

//CommonJS
const {Shazam} = require("node-shazam")
const shazam = new Shazam()

const recognise = await shazam.recognise('/path/to/file','en-US')
console.log(recognise)

//fromVideoFile and fromFilePath is deprecated and much slower

Search track

//works with lyrics and name
await shazam.search_music('en-US','GB','you know the rules and so do I','1','0')

Top tracks globally

await shazam.top_tracks_global('en-US','GB','10','0')
console.log(toptracks)

Top tracks globally for a genre

await shazam.top_genre_tracks_world('en-US','GB','POP','10','0')

Top tracks by country

await shazam.top_tracks_country('en-US','GB','GB','10','0')

Related songs

const trackid = '157666207'
await shazam.related_songs('en-US','GB',trackid,'10','0')

Keywords

typescript

FAQs

Package last updated on 02 Jul 2024

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