Process speech without stopping the recording in MATLAB

前端 未结 1 1571
逝去的感伤
逝去的感伤 2021-01-16 02:25

I am currently processing speech signals while recording simultaneously. More specifically:

  1. Record every 0.1s speech repeatedly.

  2. Process

相关标签:
1条回答
  • 2021-01-16 03:24

    Try to find something in the matrix you get on using getaudiodata()

    That must have some arrangement depending on time. (It should have some distribution of values according to time because plot() plots the sound signal wrt time axis)

    Iterate through the matrix according to that arrangement and call the process() function.

    This way you can record the sound at once and then process for every 0.1 secs one by one by iterating.

    0 讨论(0)
提交回复
热议问题