song_parse 0.0.9

* CURRENTLY IN VERY EARLY DEVELOPMENT STAGES, SOME MAJOR FEATURES HAVE YET TO BE IMPLEMENTED *

A rust library for parsing song metadata from filenames.

Installation

The below options will install the song_parse library

To install the CLI bin song_parse use: sh $ cargo install song_parse

Example

rust use song_parse::{Extractor, Extraction, JsonWrapper, TextWrapper}; let file = "Lady Gaga, Ariana Grande - Rain On Me (Official Music Video) [AOm9Fv8NTG0].mp3"; let extraction = Extractor::All.new(file); TextWrapper(extraction).print(); // Artist: Lady Gaga, Ariana Grande // Title: Rain On Me // Features: None // Misc: Official Music Video // YoutubeID: AOm9Fv8NTG0

Author

This project is licensed under the terms of the MIT license.