Felipe Espic

Results 28 comments of Felipe Espic

I just commited a fixing for the inconsistency of number of frames given by REAPER (ec6ae28). That may solve the problem.

Hi, yes, the "s2" experiment was completely reformatted, now everything is centralised in one main script. Also, you can vary several parameters as wanted. The function signatures have changed, be...

Thanks! I perceive that it sounds OK, but a bit "wobbly". I think there is something going on with the F0. I am going to check that as soon as...

I realised that the full data demo was using a very simple architecture. So, I just changed it to match what is used in s1. he wobbly effect should be...

I'm facing the same problem right now. I know that it's a very old comment. Anyway, I will post the solution if I solve it.

The WORLD vocoder and SPTK are not optimised for streaming. You may end up allocating and deallocating a lot of memory on each frame processing.

> WORLD has a streaming method implemented, but it's not really documented. You can find an example here: https://github.com/mmorise/World/blob/master/test/test.cpp#L428-L438 > But it's true this won't help you very much when...

Hi @syazw , Did you installed REAPER? Also, if your files are stereo, convert them to mono before extracting features.

> I've tested the changes you suggested and am getting some 'divide by zero' errors: > extract_features_for_merlin_lossless_test_01.py:71: RuntimeWarning: divide by zero encountered in log v_lf0 = np.log(v_f0) I see the...

Hi @dreamk73 , The dimensions for the lossless features should be: mag = fft_len/2+1 real = fft_len/2+1 imag = fft_len/2+1 f0 = 1 (and 3X for their respective deltas.) Where...