Dmitry Bogdanov
Dmitry Bogdanov
- Move all files from `src/examples/tutorial` to `src/examples/python`. - Better naming for examples with respect to their application, for example: - `example_clickdetector.ipynb` --> `example_audioproblems_clickdetector.ipynb` @palonso - Update links to notebooks...
Started some work in the [examples_updates](https://github.com/MTG/essentia/tree/examples_updates) branch.
Perhaps you may want to have a look at the flags for cross-compilation [in the wscript](https://github.com/MTG/essentia/blob/master/wscript#L243). Any further feedback is welcome.
There is a lot of research going in music identification. Have a look at [this recent tutorial](https://docs.google.com/presentation/d/17GDjTE9GV0cWxpYlsiXLvgPkVAg70Ho4RwPUyyL-j0U/edit?usp=sharing) at ISMIR conference. So far, we have talked with @furkanyesiler about including his...
Hi! Which feature from Librosa were you trying to approximate? (e.g., mel-spectrograms?)
`libavresample` has been replaced in #811, the rest is pending.
In addition to `avcodec_decode_audio4`, [`avcodec_encode_audio2`](https://ffmpeg.org/doxygen/3.4/group__lavc__encoding.html#gae4b5ba4d50b1264a5cf5408ff32fb622) used in MonoWriter need to be replaced by `avcodec_send_frame()`/`avcodec_receive_packet()`.
Also relevant: #1154
One option to address this would be to use a fixed seed for random noise added in FrameCutter. We are using [NoiseAdder](https://github.com/MTG/essentia/blob/master/src/algorithms/standard/framecutter.cpp#L205) and it allows to choose between a random...
PitchContours* melody algorithms aren't designed for real-time, because they require a segment of audio to gather pitch contours and apply statistics. You can compute the chain up to PitchSalienceFunctionPeaks in...