mirror of
https://github.com/xtrll/MusicMetaFinder.git
synced 2026-04-25 10:16:01 +02:00
Removed all files, dependencies, and mentions related to the AuDD API. Cleaned up the src directory, removing all non-developed or unused items, as part of a major cleanup. This change is due to the strategic shift towards using audio fingerprinting for song recognition, as opposed to sending the raw audio file itself.
5 lines
148 B
JavaScript
5 lines
148 B
JavaScript
export function checkInputPath(inputPath) {
|
|
if (!inputPath) {
|
|
throw new Error('Please provide the path to an audio file or directory.');
|
|
}
|
|
} |