Upcoming maintenance
Dear Customers and Partners.
This website will be undergoing scheduled maintenance on June 14, 2023. Please be aware there may be disruption to the developer portal website and associated services during the scheduled maintenance period.
This upgrade is essential to ensure the continued performance, reliability, and security of Developer World.
We apologize for any inconvenience.
What is "score" file used in ssprocLib?
-
Hi @CamilaSouza,
I have been using the sound signal processing library (ssprocLib) from Spresense.
https://github.com/SonySemiconductorSolutions/ssih-music
Most of the sample examples such as MusicBox, OneKeySynth etc. uses "score" file.
Could you please help me in knowing what it is? Is it the sheet music file that's been referred here? What is the format of the file?
BR
Navaneeth -
Hi @NavaneethRao-2!
I haven't used this library myself, but by taking a look at the code I believe this is a MIDI score file they are referring too.
If you go to test/scoresrc_test.cpp there is a midiparse() function that gets information from this score file and it expects a MIDI file.
They even use an example file called "BeethovenFurElise.mid". But they probably couldn't upload the file to github for legal reasons.Try to use a .mid file and tell me if it works. If it doesn't we can dig deeper.
-
@CamilaSouza Thanks a lot for the inputs. I had not seen the test scripts. It worked for me.
-
@NavaneethRao-2
I'm glad