Trouble with sequencer.ck
hi there. I've found a simple sequencer at chuck wiki (http://wiki.cs.princeton.edu/index.php/ChucK/sequencer.ck) but when i try execute it, the console show: sequencer.ck]:line(9): cannot declare static non-primitive objects (yet)... I've found some info about this here, but I can't solve the problem, any tip? _______________________________________________________ Yahoo! Mail - Sempre a melhor opção para você! Experimente já e veja as novidades. http://br.yahoo.com/mailbeta/tudonovo/
Howdy Hilquias, Changing this line: static Event new_measure; to this: static Event @ new_measure; should make it compile, at the least--i think this code was written with an earlier version of chuck in mind... ill update it on the wiki for posterity. spencer On Jan 18, 2007, at 12:47 PM, Hilquias Abreu da Costa wrote:
hi there. I've found a simple sequencer at chuck wiki (http://wiki.cs.princeton.edu/index.php/ChucK/sequencer.ck) but when i try execute it, the console show:
sequencer.ck]:line(9): cannot declare static non-primitive objects (yet)...
I've found some info about this here, but I can't solve the problem, any tip?
_______________________________________________________ Yahoo! Mail - Sempre a melhor opção para você! Experimente já e veja as novidades. http://br.yahoo.com/mailbeta/tudonovo/
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
What should I look for when dropouts occur while chucking a given file with something like rec.ck? --van
Hi Van, What sort of dropouts are you experiencing? Short, periodic dropouts while recording are known to occur, as file writing for recording audio occurs on the main thread. Since file writing might take longer than 1/sample_rate, this can cause real time audio to fail and dropouts to occur. We are definitely working to fix this soon. Are you experiencing some other kind of dropout? spencer On Jan 19, 2007, at 2:27 PM, Stiefel, Van wrote:
What should I look for when dropouts occur while chucking a given file with something like rec.ck? --van
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
You've described it. I found out a bit more in the archives and am recording in silent mode with good results. Thanks for your response! --van -----Original Message----- From: chuck-users-bounces@lists.cs.princeton.edu on behalf of Spencer Salazar Sent: Fri 1/19/2007 5:51 PM To: ChucK Users Mailing List Subject: Re: [chuck-users] hiccups with recording Hi Van, What sort of dropouts are you experiencing? Short, periodic dropouts while recording are known to occur, as file writing for recording audio occurs on the main thread. Since file writing might take longer than 1/sample_rate, this can cause real time audio to fail and dropouts to occur. We are definitely working to fix this soon. Are you experiencing some other kind of dropout? spencer On Jan 19, 2007, at 2:27 PM, Stiefel, Van wrote:
What should I look for when dropouts occur while chucking a given file with something like rec.ck? --van
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
participants (3)
-
Hilquias Abreu da Costa
-
Spencer Salazar
-
Stiefel, Van