Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Extracts artist name and song title from filenames and writes them as ID3 to those files
Extracts artist name and song title from filenames and writes them as ID3 v2.3 to those files.
# For use in JavaScript
npm install guess-id3
# For use from the command line
npm install -g guess-id3
$ guess-id3 [--dry] [--verbose] 'music/**/*.mp3'
import guessId3 from 'guess-id3'
guessId3('music/**/*.mp3', { dry: false, verbose: false }).then(() => {
console.log('Done!')
})
guessId3(glob, options)
Overwrites all files matched by glob
with a buffer that contains ID3 metadata. The data is extracted from a file's name, splitting it on -
. As an example, the filename Artist Name - Song Title.mp3
gives { artist: 'Artist Name', title: 'Song Title' }
.
glob
- A glob accepted by glob-all
.options
options.dry
- A boolean indicating whether just to tell what would have been done instead of doing it. Default is false
.options.verbose
- Adds some console.log() statements. Default is false
.UNLICENSED
FAQs
Extracts artist name and song title from filenames and writes them as ID3 to those files
The npm package guess-id3 receives a total of 1 weekly downloads. As such, guess-id3 popularity was classified as not popular.
We found that guess-id3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.