3.0.2 • Published 2 months ago

nocopyrightsounds-api v3.0.2

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
2 months ago

NoCopyrightSounds API

This is a webscraper designed to provide api like access to the NCS website.

Features

  • Listing all Songs
  • Searching (using the search from the website)
  • Getting artist info

Updating from 2.1.3

Breaking changes

  • Removed Client class
  • Page indices start from 0 insted of 1
  • Rename: getMusic(page) => getSongs(page)
  • Song object
    • songUrl => previewUrl
    • imageUrl => coverUrl
    • Date is now a Date object

New stuff

  • Enums for Genre and Mood
  • Filter for instrumental songs
  • Song object
    • download section with regular and/or instrumental downloads

Import

//module (recommended)
import ncs from 'nocopyrightsounds-api'

//CommonJS
const ncs = require('nocopyrightsounds-api')

Typescript

Don't forget to set esModuleInterop to true

Examples

Top level await is only available with es modules in NodeJS.

Get all songs from the first page in the music library

import ncs from 'nocopyrightsounds-api'

const songs = await ncs.getSongs(/* page here */)

// use the songs here
console.log(songs)

Get all songs from the first page of house songs

import ncs from 'nocopyrightsounds-api'

const results = await ncs.search(
    {
        // filter
        genre: ncs.Genre.House
    }
    /* page here */
)

// use the results here
console.log(results)

Get artist info

import ncs from 'nocopyrightsounds-api'

const artistInfo = await ncs.getArtistInfo(/* artist url here (/artist/760/srikar) */)

// use the artistinfo info here
console.log(artistInfo)

Download the newest song

import ncs from 'nocopyrightsounds-api'
import axios from 'axios'
import fs from 'fs/promises'

// getting the newest 20 songs (20 songs = 1 page)
const songs = await ncs.getSongs()

const newestSong = songs[0]
const audioUrl = newestSong.download.regular

if (!audioUrl) throw "This Song doesn't have a regular (non instrumental) version!"

// downloading audio
const { data: audioFile } = await axios.get(audioUrl, {
    responseType: 'arraybuffer'
})

await fs.writeFile(`${newestSong.name}.mp3`, audioFile)
3.0.2

2 months ago

3.0.1

2 months ago

3.0.0

1 year ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.3

2 years ago

2.1.0

2 years ago

1.2.0

2 years ago

1.2.1

2 years ago

1.1.11

2 years ago

1.1.10

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.1.6

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago