Skip to content

Latest commit

 

History

History
59 lines (32 loc) · 1.44 KB

File metadata and controls

59 lines (32 loc) · 1.44 KB

Song Chords Recognizer - Web ASP.NET Application

Configuration

Edit appsettings.json config file.

!! Fill the Predictors.PythonPath parameter by the path to your python.exe !!

Other parameters are optional.

Recognizer Controller

/index

Default index page where you can upload and process an audio file with any of provided models.

  • Method: GET
  • Arguments: None

index_p prtsc

index_tv prtsc

/VisualizePredictors

Outcome of Song Chords Recognizer model based on Deep Learning with its key and bpm.

  • Method: POST
  • Arguments: IFormFile audio

VisualizeStatisticalModel prtsc

/VisualizeTemplateVoter

Outcome of Song Chords Recognizer model based on the simple template voting from generated and filtered spectrograms.

  • Method: POST
  • Arguments: IFormFile audio, String windowArg, String filtrationArg, int sampleLengthLevel, int bpm

VisualizeTemplateVoter prtsc

/About

Basic information about the project with the GitHub link.

  • Method: GET
  • Arguments: None

About prtsc

/IncorrectInputFormat

An error message when some error occures.

  • Method: GET
  • Arguments: String messages

IncorrectInputFormat prtsc