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

@web-scrobbler/metadata-filter

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web-scrobbler/metadata-filter

A module for cleaning up artist, album, and song names.

  • 3.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.5K
decreased by-18.92%
Maintainers
0
Weekly downloads
 
Created
Source

metadata-filter Test NPM Codacy Coverage

A module for cleaning up artist, album, and song names.

Installation

Install using npm

npm i @web-scrobbler/metadata-filter

Include via CDN

<script src="https://unpkg.com/@web-scrobbler/metadata-filter@latest/dist/filter.min.js"></script>

Usage

If you want to use this module in a project which is built with a bundler (e.g. webpack), you can use CommonJS-like or ES6 imports:

// CommonJS style
const MetadataFilter = require('@web-scrobbler/metadata-filter');

// ES6 style
import * as MetadataFilter from '@web-scrobbler/metadata-filter';

MetadataFilter.removeRemastered(yourInput);

In a browser you can access to the module by using the global MetadataFilter object:

<!-- Assume you have `metadata-filter` module included with `script` tag -->
<script lang="javascript">
	MetadataFilter.removeRemastered(yourInput);
</script>

Single filter functions

You can call filter functions for basic, one-line filter functionality. These filter functions are intended to be used on a single field, such as an artist, album, or track.

However, it is possible (not officially supported) to use some of these on combined fields ("Artist - Song", "Artist - Album"), as in the third example below.

console.log(MetadataFilter.removeRemastered('Jane Doe (Remastered)')); // Jane Doe
console.log(MetadataFilter.removeVersion('Get Lucky (Album Version)')); // Get Lucky
console.log(
	MetadataFilter.youtube(
		'Car Bomb - Scattered Sprites (Official Music Video)'
	)
); // Car Bomb - Scattered Sprites

See src/functions.ts for more details.

Combine filter functions

You can also use multiple filter functions on a string at once by creating a MetadataFilter object which combines multiple functions from above, or by using one of the pre-existing filter objects.

First, create a filter set. This is a set of filter functions for different fields.

const filterSet = {
	track: [
		MetadataFilter.removeRemastered,
		MetadataFilter.fixTrackSuffix,
		MetadataFilter.removeLive,
	],
	album: [
		MetadataFilter.removeRemastered,
		MetadataFilter.fixTrackSuffix,
		MetadataFilter.removeLive,
	],
};

Then, construct a MetadataFilter using this filter set.

const filter = MetadataFilter.createFilter(filterSet);
console.log(filter.filterField('album', 'Nevermind (Remastered)')); // Nevermind
console.log(filter.filterField('track', 'In Bloom - Nevermind Version')); // In Bloom (Nevermind Version)

Predefined filters

There are also predefined filters available for easy access. For example, the above filter set can be acquired using createSpotifyFilter() function:

const filter = MetadataFilter.createSpotifyFilter();

See src/filters.ts for more details.

Extending filters

Finally, you can take existing MetadataFilter objects and extend them with another filter. This is done by providing the .extend() method with another MetadataFilter object.

const filter = MetadataFilter.createSpotifyFilter();

filter.extend(MetadataFilter.createAmazonFilter());
// This would also work: filter.extend(MetadataFilter.createFilter(filterSet));

console.log(
	filter.filterField('track', 'Seasons in the Abyss (Album Version)')
); // Seasons in the Abyss

As an alternative, you can use the .append() method to apply a filter set to an existing MetadataFilter object.

const filter = MetadataFilter.createFilter({ track: filterTrack });

filter.append({ artist: filterArtist });

Since these methods return a MetadataFilter instance, you can chain method calls.

const filter = MetadataFilter.createFilter({ track: filterTrack }).append({
	artist: filterArtist,
});

Development

# Install dev dependencies
> npm install

# Build the dist file
> npm run build

# Format files
> npm run format

# Lint source files
> npm run lint

# Run tests
> npm test

# Run tests with a coverage report
> npm run test-with-coverage

See also

License

Licensed under the MIT License.

Keywords

FAQs

Package last updated on 20 Jun 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

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