octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #50674] audiorecorder() crashes in getaudiodat


From: Lars Kindermann
Subject: [Octave-bug-tracker] [bug #50674] audiorecorder() crashes in getaudiodata()
Date: Wed, 26 Sep 2018 12:47:17 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0

Follow-up Comment #11, bug #50674 (project octave):

I'm running this patch for few month now with no more crashes. 
I have created and attached a changeset, could you please push it?

Here is a little example for a live audio display.
It works exactly as in Matlab now:


#example for live recording and processing 
recorder = audiorecorder ();
record (recorder)
pause (1)
for i=1:60000
  get (recorder);
  data = getaudiodata (recorder);
  #size (data)
  plot(data(end-40000:end,:))
  xlim([0 40000])
  ylim([-1 1])
  drawnow
end
stop (recorder)

 


(file #45103)
    _______________________________________________________

Additional Item Attachment:

File name: bug50674.changeset             Size:0 KB


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?50674>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]