remove API key
This commit is contained in:
parent
d7aaf47379
commit
b64bab354f
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ const fpcalc = require('fpcalc');
|
||||||
const fetch = require('node-fetch');
|
const fetch = require('node-fetch');
|
||||||
const youtubedl = require('youtube-dl');
|
const youtubedl = require('youtube-dl');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
const { acoustID } = require('../../config.json');
|
||||||
|
|
||||||
|
|
||||||
class musicCommand extends Command {
|
class musicCommand extends Command {
|
||||||
|
@ -46,7 +47,7 @@ class musicCommand extends Command {
|
||||||
video.on('end', function () {
|
video.on('end', function () {
|
||||||
fpcalc('./music.mp3', function(err, result) {
|
fpcalc('./music.mp3', function(err, result) {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
fetch(`https://api.acoustid.org/v2/lookup?client=LRAhvvxpDu&meta=recordings+releasegroups+compress&duration=${result.duration}&fingerprint=${result.fingerprint}`).then((response) => {
|
fetch(`https://api.acoustid.org/v2/lookup?client=${acoustID}&meta=recordings+releasegroups+compress&duration=${result.duration}&fingerprint=${result.fingerprint}`).then((response) => {
|
||||||
return response.json();
|
return response.json();
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
if (!response.results[0])
|
if (!response.results[0])
|
||||||
|
|
Loading…
Reference in a new issue