Skip to content

Commit

Permalink
Done, to whoever merges this, good luck.
Browse files Browse the repository at this point in the history
Former-commit-id: 53ad622
  • Loading branch information
YuzukiTsuru committed Jul 3, 2022
1 parent 67960ed commit e8e7f2e
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,16 @@ lessaudio is the audio source model format file used by lessampler, which contai

> ! Note: the current version of lessaudio only saves the data of lessaudiomodel, if there is any modification in the future, it will be explained here
| index | data | data size |
| ----- | ---- | --------- |
| 1 | | |
| 2 | | |
| 3 | | |
| 4 | | |
| 5 | | |
| 6 | | |
| 7 | | |
| 8 | | |
| 9 | | |
| index | data name | data | data type | data size |
| ----- | ------------------ | ------------------------- | ------------- | ------------------------- |
| 1 | `lessaudio_header` | `5402` | `std::string` | `sizeof(std::streamsize)` |
| 2 | `x_length` | `audioModel.x_length` | `int` | `sizeof(int)` |
| 3 | `fs` | `audioModel.fs` | `int` | `sizeof(int)` |
| 4 | `frame_period` | `audioModel.frame_period` | `double` | `sizeof(double)` |
| 5 | `f0_length` | `audioModel.f0_length` | `int` | `sizeof(int)` |
| 6 | `w_length` | `audioModel.w_length` | `int` | `sizeof(int)` |
| 7 | `fft_size` | `audioModel.fft_size` | `int` | `sizeof(int)` |
| 8 | `f0` | `audioModel.f0` | `vector<double>` | `audioModel.f0.size() * sizeof(double)` |
| 9 | `spectrogram` | `audioModel.spectrogram` | `vector<vector<double>>` | `audioModel.f0.size() * audioModel.w_length * sizeof(double)` |
| 10 | `aperiodicity` | `audioModel.aperiodicity` | `vector<vector<double>>` | `audioModel.f0.size() * audioModel.w_length * sizeof(double)` |

0 comments on commit e8e7f2e

Please sign in to comment.