Giter Club home page Giter Club logo

musql's Introduction

musql

Music tags to SQL conversion

About

Reads metadata from music files and inserts them into a relational database for further processing.

Requirements

  • Java Runtime Environment 21

Usage

Either PostgreSQL or H2 are supported as database targets. Configure them by passing the fitting spring boot configuration parameters.

java -Dspring.datasource.url=<JDBC URL> -Dspring.datasource.username=<username> -Dspring.datasource.password=<password> -jar musql*.jar <path to directory or file>

Example Using H2

H2 is an embedded database that does not require an external server to be set up. This will import the data from all files in ./my_music_library/ into an H2 database stored in the ./local directory.

java -Dspring.datasource.url=jdbc:h2:./local/musql -Dspring.datasource.username=sa -Dspring.datasource.password="" -jar musql*.jar ./my_music_library/

Example Using PostgreSQL

Note that you will have to have a PostgreSQL server running for this.

java -Dspring.datasource.url=jdbc:postgresql://<host>:<port>/<db_name> -Dspring.datasource.username=<username> -Dspring.datasource.password=<password> -jar musql*.jar ./my_music_library/

musql's People

Watchers

 avatar  avatar  avatar

musql's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.