electro-music.com   Dedicated to experimental electro-acoustic
and electronic music
 
    Front Page  |  Radio
 |  Media  |  Forum  |  Wiki  |  Links
Forum with support of Syndicator RSS
 FAQFAQ   CalendarCalendar   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   LinksLinks
 RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in  Chat RoomChat Room 
 Forum index » DIY Hardware and Software » ChucK programming language
deb pack for chuck?
Post new topic   Reply to topic Moderators: Kassen
Page 2 of 3 [55 Posts]
View unread posts
View new posts in the last week
Mark the topic unread :: View previous topic :: View next topic
Goto page: Previous 1, 2, 3 Next
Author Message
enrike



Joined: Nov 04, 2006
Posts: 1
Location: bilbao

PostPosted: Mon Nov 06, 2006 7:25 am    Post subject: Reply with quote  Mark this post and the followings unread

i installed the debian package with apt-get on debian unstable and i get this error when i try to run chuck

$ chuck foo.ck
[chuck]: (via rtaudio): no devices found for compiled audio APIs!
[chuck]: cannot initialize audio device (try using --silent/-s)

is the debian package compiled for ALSA by default?

thanks
Back to top
View user's profile Send private message
kijjaz



Joined: Sep 20, 2004
Posts: 765
Location: bangkok, thailand
Audio files: 4

PostPosted: Mon Nov 06, 2006 1:45 pm    Post subject: Reply with quote  Mark this post and the followings unread

enrike: i tried last time and i guess it was for Jack.
mainly i use chuck for alsa..
so i actually get used to having both versions ready for use on my debian machines.
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Wed Jan 17, 2007 4:40 am    Post subject: chuck installed successfully but no sound
Subject description: chuck installed successfully but no sound
Reply with quote  Mark this post and the followings unread

Hi folks, I've read the posts and installed chuck on ubuntu 6.06 the way you did. So far so good. The only thing I don't get: Compiling (chucking) a file I don't here anything! Did I miss something? Thanks for your help.
Back to top
View user's profile Send private message
Kassen
Janitor
Janitor


Joined: Jul 06, 2004
Posts: 7678
Location: The Hague, NL
G2 patch files: 3

PostPosted: Wed Jan 17, 2007 11:35 am    Post subject: Reply with quote  Mark this post and the followings unread

Hi, Fojaneghe!

You don't hear anything?

Let's take this step by step. First of all, let's make sure ChucK is installed properly at all. paste the following line to "test.ck" and try running that by typing

"chuck test.ck"

at the terminal

Code:
<<<"Fojaneghe will soon be a real ChucKist!">>>;


This should just print a single line to the terminal. If this works we know ChucK is installed properly. If that's the case we'll wonder wether it's just the sound, try the following;
Code:

Sinosc beep => dac;
2::second => now;


(also pasted into a new file and called in the same way)

This should generate a two second beep. This particular bit of code doesn't use a sample and so avoids libsndfile. In that past it has turned out that on Linux a improperly configured libsndfile is often the culprit but that one should only affects stuff that deals with wave files.

Both files should exit the ChucK virtual machine after running, BTW, that's normal behaviour.

If that doesn't make a sound either it would be good for you to tell a little more about your system and what errors -if any- you are getting. It might also help to type "chuck --probe" at your terminal and tell us about what that gives you. Maybe typing "chuck --probe" would actually be the best thing to try first since it's simple and doesn't require any extra files.

We'll get you up and ChucKing in no-time!

_________________
Kassen
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Thu Jan 18, 2007 4:13 am    Post subject: chuck --probe
Subject description: checking chuck
Reply with quote  Mark this post and the followings unread

Hi, Kassen! Great that you've answered immediately! This is the output after the probe comand:

[chuck]: found 1 device(s) ...
[chuck]: ------( chuck -- dac1 )---------------
[chuck]: device name = "hw:Intel,0"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = YES
[chuck]: natively supported data formats:
[chuck]: 16-bit int
[chuck]: 32-bit int
[chuck]: supported sample rates:
[chuck]: 44100 Hz
[chuck]: 48000 Hz
[chuck]: 88200 Hz
[chuck]: 96000 Hz
[chuck]: 176400 Hz
[chuck]: 192000 Hz
[chuck]:
ALSA lib seq_hw.c:456:(snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
[chuck]: RtMidiIn::initialize: error creating ALSA sequencer input client object.
[chuck]:
ALSA lib seq_hw.c:456:(snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
[chuck]: RtMidiOut::initialize: error creating ALSA sequencer client object.
[chuck]:

Seems that there is some trouble about the ALSA sequencer. How can I handle it? Greetings to all from italy[/img]
Back to top
View user's profile Send private message
majutsu



Joined: Jun 18, 2006
Posts: 151
Location: New York
Audio files: 1

PostPosted: Thu Jan 18, 2007 6:39 am    Post subject: Reply with quote  Mark this post and the followings unread

it doesn't seem like you typed in the following (which was in the middle of the thread):


sudo su
modprobe snd-seq
if grep -q -x snd-seq /etc/modules; \
then echo && echo "NOTE: snd-seq is already in /etc/modules, no changes needed."; \
else cp /etc/modules /etc/modules_backup_`date +%Y%m%d%H%M` && echo snd-seq >> /etc/modules; \
fi
exit

that would explain the output you showed. Make sure you type in everything listed for ubuntu. Fixing the alsa sequencer is important.

i hope that helps.

_________________
All phenomena are atoms in association and dissociation.
Back to top
View user's profile Send private message
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Thu Jan 18, 2007 7:05 am    Post subject: ALSA sequencer
Subject description: ALSA sequencer
Reply with quote  Mark this post and the followings unread

Hi Majutsu! Hope that I got right what you tried to say. Having typed the lines from your post I got

[chuck]: found 1 device(s) ...
[chuck]: ------( chuck -- dac1 )---------------
[chuck]: device name = "hw:Intel,0"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = YES
[chuck]: natively supported data formats:
[chuck]: 16-bit int
[chuck]: 32-bit int
[chuck]: supported sample rates:
[chuck]: 44100 Hz
[chuck]: 48000 Hz
[chuck]: 88200 Hz
[chuck]: 96000 Hz
[chuck]: 176400 Hz
[chuck]: 192000 Hz
[chuck]:
[chuck]: ------( chuck -- 1 MIDI inputs )------
[chuck]: [0] : "Midi Through Port-0"
[chuck]:
[chuck]: ------( chuck -- 1 MIDI outputs )-----
[chuck]: [0] : "Midi Through Port-0"
[chuck]:

But what do you mean with fixing the ALSA sequencer? To Kassen: Yes. Your toy code was compiled successfully! However. Maybe it's some package that's missing? I don't get the problem. Thanks for your help.
Back to top
View user's profile Send private message
Kassen
Janitor
Janitor


Joined: Jul 06, 2004
Posts: 7678
Location: The Hague, NL
G2 patch files: 3

PostPosted: Thu Jan 18, 2007 2:31 pm    Post subject: Reply with quote  Mark this post and the followings unread

Well, if you look carefully above you'll see that your first attempt at --probe ran into problems with "creating ALSA sequencer input client object." and now those are gone. That's good.

When you say my example code compiled, I take it that that still means no sound?

Ok, next step, I gather that this package is for Jack audio? (I got my own to compile, didn't see the package yet) In that case it would be good to make sure you actually have Jack properly installed. Do you?

_________________
Kassen
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Fri Jan 19, 2007 2:56 am    Post subject: Jack audio Reply with quote  Mark this post and the followings unread

OK. Since I don't know what you meant with the Jack package, here is the list of those jack-packages I've already installed or those I can get from the servers (stable). Still, there is no sound. There's even no message that's something's wrong. Maybe you can suggest me which package you've got in mind?!

i alsaplayer-jack
p dssi-host-jack
i jack
p jack-rack
p jack-tools
p jackbeat
i A jackd
p jackeq
p liballegro4.1-plugin-jack
p liballegro4.2-plugin-jack
v libjack-dev
i A libjack0.100.0-0
i libjack0.100.0-dev
p libjackasyn-dev
p libjackasyn0
p qjackctl
p xmms-jack
p xmms-jackasyn

Again, thanks a lot for your suggestions!
Back to top
View user's profile Send private message
Kassen
Janitor
Janitor


Joined: Jul 06, 2004
Posts: 7678
Location: The Hague, NL
G2 patch files: 3

PostPosted: Fri Jan 19, 2007 3:19 am    Post subject: Reply with quote  Mark this post and the followings unread

Ok, let's cover some fundamentals (just to make sure). "Jack" is a system through which multiple programs can deal with eachother and with the soundcard. It's kinda like a big virtual patchbay/mixer. Once it works it's very nice, kinda like Rewire but without the client-host structure.

As I understand the situation the ChucK package is compiled to output sound through this system. I'm just asuming that based on what people wrote above; I never tried that package.

So; if that's true then your ChucK install will depend on the presence of the Jack audio server on your system. If it's there it should either start itself when you boot your computer and so you'll know it's there or you'll need to start it manually. Starting it manually will probably work by starting "Jack controll". That'll give you the interface to the Jack system and this interface should start the Jack server for you.

If ChucK still doesn't work once you have made sure Jack is running it would be a good idea to make sure Jack is working properly at all using something that you know uses Jack and that you are sure outputs sound.

The plan here is to exclude factors that could be causing the problem before blaming this on a real bug. It's kinda hard to pinpoint problems like this at a distance Smile If none of this helps to find and fix the issue then I'm out of ideas and it might be time to ask Ge or Spencer. It could of cource be a bug, those happen, i heard....

_________________
Kassen
Back to top
View user's profile Send private message Send e-mail Visit poster's website
majutsu



Joined: Jun 18, 2006
Posts: 151
Location: New York
Audio files: 1

PostPosted: Fri Jan 19, 2007 10:58 am    Post subject: Reply with quote  Mark this post and the followings unread

Jackd is what you need. But Ubuntu works well/best with Alsa build IMHO.

did you compile chuck for alsa, jack or oss? Oss will not work with ubuntu. Ubuntu is alsa system, and the oss system is defined as alsa. I had trouble with chuck in jack because I usually have to start qjackctl and fire up server, which i found awkward for shredding. . .

I would strongly recommend compiling for alsa. If you typed in the instructions from this thread, they were given for alsa build. I gave up on jack build.

_________________
All phenomena are atoms in association and dissociation.
Back to top
View user's profile Send private message
majutsu



Joined: Jun 18, 2006
Posts: 151
Location: New York
Audio files: 1

PostPosted: Fri Jan 19, 2007 11:06 am    Post subject: Reply with quote  Mark this post and the followings unread

do this step by step:

Download the latest chuck.

Right click - extract here.

open up terminal, cd to the chuck directory.

cd chuck*
cd src
sudo apt-get install build-essential bison flex libjack-dev libasound2-dev libsndfile1-dev
make linux-alsa
sudo make install

This will definitely work on ubuntu 6.06 or recommended to upgrade to 6.10 (Edgy Eft). Feisty Fawn is due out soon, but chuck already works on the beta.

once installed, cd chuck*
cd examples
chuck otf*

you should hear a groovy little trance number. If that doesn't play. Save Kassen's 2 sec beep in the text editor as test.ck. Then chuck test.ck. Let us know exactly what you hear or what the screen says. Are you using any funky sound cards? What is your hardware?

_________________
All phenomena are atoms in association and dissociation.
Back to top
View user's profile Send private message
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Sun Jan 21, 2007 5:22 am    Post subject: soundcard Reply with quote  Mark this post and the followings unread

Hi Majutsu, my soundcard is a HDA Intel on a Dell machine. My chuck version is 1.2.0.7. The packages you listed in your post are all installed. Even jackd. When I compile test.ck chuck prompts
"Fojaneghe will soon be a real ChucKist!" : (string)
But I don't hear any sound!

I must admit that the fundamentals are sometimes puzzling me. Yet, I don't know how to use jack. When I was working in windows with rewire the concept seemed clear to me since it connects many audio tools.

Be patient!
Back to top
View user's profile Send private message
majutsu



Joined: Jun 18, 2006
Posts: 151
Location: New York
Audio files: 1

PostPosted: Sun Jan 21, 2007 11:18 am    Post subject: Reply with quote  Mark this post and the followings unread

you still did not mention whether you compiled chuck for alsa or jack. Did you type make-alsa or make-jack?

It wouldn't hurt you to just type what was posted step by step and print your output and results. You won't hurt anything by typing in, as ubuntu won't reinstall something already in place. I can only guarantee the alsa install using the steps above with your hardware. If you are trying to do a jack install let me know.

It is not clear right now what you are doing or trying to do.[/b]

_________________
All phenomena are atoms in association and dissociation.
Back to top
View user's profile Send private message
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Mon Jan 22, 2007 3:39 am    Post subject: Alsa Reply with quote  Mark this post and the followings unread

OK. Here we go. I redownloaded the chuck package and extracted it somewhere. I typed
sudo apt-get install build-essential bison flex libjack-dev libasound2-dev libsndfile1-dev
Password:
Reading package lists... Done
Building dependency tree... Done
build-essential is already the newest version.
bison is already the newest version.
flex is already the newest version.
Note, selecting libjack0.100.0-dev instead of libjack-dev
libjack0.100.0-dev is already the newest version.
libasound2-dev is already the newest version.
libsndfile1-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

as I already expected... Then

make linux-alsa
make -f makefile.alsa
make[1]: Entering directory `/home/sascha/Klang/chuck/chuck-1.2.0.7/src'
make[1]: `chuck' is up to date.
make[1]: Leaving directory `/home/sascha/Klang/chuck/chuck-1.2.0.7/src'

and finally

sudo make install
cp chuck /usr/bin/
chmod 755 /usr/bin/chuck

That's it. Testing chuck revealed the usual behavior.
Back to top
View user's profile Send private message
Kassen
Janitor
Janitor


Joined: Jul 06, 2004
Posts: 7678
Location: The Hague, NL
G2 patch files: 3

PostPosted: Mon Jan 22, 2007 9:36 am    Post subject: Reply with quote  Mark this post and the followings unread

Hmmmmm, I think this bit "`chuck' is up to date. " might mean nothing actually changed at that compile attempt. It can and will say this if you first compile it for Jack, then try again for Alsa which will suck if the "Jack" version wasn't what you wanted. I had that myself when I tried.

Majutsu is clearly the Ubuntu expert here but I think I'd try deleting that whole ChucK download and deleting chuck from /usr/bin to make sure any trace of previous faulty attempts are gone, then trying again.

If that doesn't help we might have a real bug and it might be time to ask Spencer.

_________________
Kassen
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sjef



Joined: Jan 22, 2007
Posts: 6
Location: Netherlands

PostPosted: Mon Jan 22, 2007 11:49 am    Post subject: Reply with quote  Mark this post and the followings unread

Hi all,

Today I found out about Chuck and I'm really enthusiastic about it. In fact, as soon as I got home from work, I started installing Chuck. I'm using Ubuntu Dapper, and after installing flex and bison (the replacements for lex and yacc, as I found out) I did a make linux-alsa, and everything went well.

First I had the problems with ALSA sequencer, which I solved using majutsu's input. Now I have the problem that none of the examples given by Kassen work ! Not even the string output. Except when I specify the --silent option.

My chuck --probe output:

Code:

[chuck]: found 4 device(s) ...
[chuck]: ------( chuck -- dac1 )---------------
[chuck]: device name = "hw:CA0106,0"
[chuck]: probe [success] ...
[chuck]: # output channels = 0
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 0
[chuck]: default device = YES
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   44100 Hz
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- dac2 )---------------
[chuck]: device name = "hw:CA0106,1"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- dac3 )---------------
[chuck]: device name = "hw:CA0106,2"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- dac4 )---------------
[chuck]: device name = "hw:CA0106,3"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- 2 MIDI inputs )------
[chuck]:     [0] : "Midi Through Port-0"
[chuck]:     [1] : "CA0106 MPU-401 (UART)"
[chuck]:
[chuck]: ------( chuck -- 2 MIDI outputs )-----
[chuck]:     [0] : "Midi Through Port-0"
[chuck]:     [1] : "CA0106 MPU-401 (UART)"
[chuck]:


and the output of chuck --verbose test.ck (using the first example by Kassen):

Code:

[chuck]:(2:SYSTEM): setting log level to: 5 (INFORM)...
[chuck]:(2:SYSTEM): initializing virtual machine...
[chuck]:(2:SYSTEM):  | behavior: HALT
[chuck]:(2:SYSTEM):  | allocating shreduler...
[chuck]:(2:SYSTEM):  | allocating messaging buffers...
[chuck]:(2:SYSTEM):  | real-time audio: YES
[chuck]:(2:SYSTEM):  | mode: CALLBACK
[chuck]:(2:SYSTEM):  | sample rate: 48000
[chuck]:(2:SYSTEM):  | buffer size: 512
[chuck]:(2:SYSTEM):  | num buffers: 8
[chuck]:(2:SYSTEM):  | devices adc: 0 dac: 0 (default 0)
[chuck]:(2:SYSTEM):  | channels in: 2 out: 2
[chuck]:(2:SYSTEM): initializing compiler...
[chuck]:(3:SEVERE):  | initializing type checker...
[chuck]:(3:SEVERE):  |  | adding base classes...
[chuck]:(3:SEVERE):  |  |  | class 'object'
[chuck]:(3:SEVERE):  |  |  | class 'array'
[chuck]:(3:SEVERE):  |  |  | class 'string'
[chuck]:(3:SEVERE):  |  |  | class 'ugen'
[chuck]:(3:SEVERE):  |  |  | class 'shred'
[chuck]:(3:SEVERE):  |  |  | class 'event'
[chuck]:(3:SEVERE):  |  |  | class 'class'
[chuck]:(3:SEVERE):  | initializing emitter...
[chuck]:(3:SEVERE):  | loading built-in modules...
[chuck]:(3:SEVERE):  |  | module osc...
[chuck]:(3:SEVERE):  |  | module xxx...
[chuck]:(3:SEVERE):  |  | module filter...
[chuck]:(3:SEVERE):  |  | module STK...
[chuck]:(3:SEVERE):  |  | class 'machine'...
[chuck]:(3:SEVERE):  |  | class 'std'...
[chuck]:(5:INFORM):  |  | initializing KBHitManager...
[chuck]:(3:SEVERE):  |  | class 'math'...
[chuck]:(3:SEVERE):  |  | class 'opsc'...
[chuck]:(2:SYSTEM): type dependency resolution: MANUAL
[chuck]:(2:SYSTEM): initializing synthesis engine...
[chuck]:(3:SEVERE):  | initializing 'dac'...
[chuck]:(3:SEVERE):  | initializing 'adc'...
[chuck]:(3:SEVERE):  | initializing 'blackhole'...
[chuck]:(2:SYSTEM):  | initializing 'real-time' audio...
[chuck]:(5:INFORM):  |  | starting kb loop...


What happens is that chuck just hangs here.. CTRL+C will exit, but no string is printed. If I use chuck --silent test.ck, the string is printed and chuck exits afterwards. Maybe also worth mentioning, xine works well with ALSA - it's not that I have no sound at all in Ubuntu.

Please advice on how to get it running. I can't wait to start learning Chuck.

Regards, have a good day,

Sjef.
Back to top
View user's profile Send private message
majutsu



Joined: Jun 18, 2006
Posts: 151
Location: New York
Audio files: 1

PostPosted: Mon Jan 22, 2007 3:23 pm    Post subject: Reply with quote  Mark this post and the followings unread

very helpful guys -- that's the kind of thing we need

I don't have any easy answers yet, just read the posts. But i will go look into it.

As for original poster, I agree with kassen. The compile was not redone. Use whereis command to identify chuck places, then remove and reinstall.

As for why you have no sound, i don't know yet. It works on most computers in Ubuntu as above. Of course, i would recommend ubuntu users to upgrade to Edgy since Feisty's out soon, and Dapper is definitely not a current release. But i got 1.2.7 to work on dapper the same way before edgy, so i know that's not the problem.

Does rhythmbox music player (which comes with ubuntu) work? xmss, etc, your other alsa apps (kaconnect etc) do they work? I will assume so for now.

when you go into examples directory and chuck otf* what happens? I've figured you get no sound. But are there any printed messages. I am tempted to use gdb to debug . . .

_________________
All phenomena are atoms in association and dissociation.
Back to top
View user's profile Send private message
majutsu



Joined: Jun 18, 2006
Posts: 151
Location: New York
Audio files: 1

PostPosted: Mon Jan 22, 2007 3:32 pm    Post subject: Reply with quote  Mark this post and the followings unread

p.s. to the two guys having problems:

cd chuck*
cd examples
cd basic

chuck --verbose moe

let me know what you get, your printout:

Code:

majutsu@majutsu-desktop:~/chuck-1.2.0.7/examples/basic$ chuck --verbose moe
[chuck]:(2:SYSTEM): setting log level to: 5 (INFORM)...
[chuck]:(2:SYSTEM): initializing virtual machine...
[chuck]:(2:SYSTEM):  | behavior: HALT
[chuck]:(2:SYSTEM):  | allocating shreduler...
[chuck]:(2:SYSTEM):  | allocating messaging buffers...
[chuck]:(2:SYSTEM):  | real-time audio: YES
[chuck]:(2:SYSTEM):  | mode: CALLBACK
[chuck]:(2:SYSTEM):  | sample rate: 48000
[chuck]:(2:SYSTEM):  | buffer size: 512
[chuck]:(2:SYSTEM):  | num buffers: 8
[chuck]:(2:SYSTEM):  | devices adc: 0 dac: 0 (default 0)
[chuck]:(2:SYSTEM):  | channels in: 2 out: 2
[chuck]:(2:SYSTEM): initializing compiler...
[chuck]:(3:SEVERE):  | initializing type checker...
[chuck]:(3:SEVERE):  |  | adding base classes...
[chuck]:(3:SEVERE):  |  |  | class 'object'
[chuck]:(3:SEVERE):  |  |  | class 'array'
[chuck]:(3:SEVERE):  |  |  | class 'string'
[chuck]:(3:SEVERE):  |  |  | class 'ugen'
[chuck]:(3:SEVERE):  |  |  | class 'shred'
[chuck]:(3:SEVERE):  |  |  | class 'event'
[chuck]:(3:SEVERE):  |  |  | class 'class'
[chuck]:(3:SEVERE):  | initializing emitter...
[chuck]:(3:SEVERE):  | loading built-in modules...
[chuck]:(3:SEVERE):  |  | module osc...
[chuck]:(3:SEVERE):  |  | module xxx...
[chuck]:(3:SEVERE):  |  | module filter...
[chuck]:(3:SEVERE):  |  | module STK...
[chuck]:(3:SEVERE):  |  | class 'machine'...
[chuck]:(3:SEVERE):  |  | class 'std'...
[chuck]:(5:INFORM):  |  | initializing KBHitManager...
[chuck]:(3:SEVERE):  |  | class 'math'...
[chuck]:(3:SEVERE):  |  | class 'opsc'...
[chuck]:(2:SYSTEM): type dependency resolution: MANUAL
[chuck]:(2:SYSTEM): initializing synthesis engine...
[chuck]:(3:SEVERE):  | initializing 'dac'...
[chuck]:(3:SEVERE):  | initializing 'adc'...
[chuck]:(3:SEVERE):  | initializing 'blackhole'...
[chuck]:(2:SYSTEM):  | initializing 'real-time' audio...
[chuck]:(5:INFORM):  |  | initializing callback...
[chuck]:(3:SEVERE):  | allocating buffers for 512 x 2 samples...
[chuck]:(3:SEVERE): starting compilation...
[chuck]:(2:SYSTEM): starting listener on port: 8888...
[chuck]:(2:SYSTEM): running virtual machine...
[chuck]:(3:SEVERE):  | initializing audio buffers...
[chuck]:(3:SEVERE):  | virtual machine running...
[chuck]:(3:SEVERE): starting real-time audio...
[chuck]:(5:INFORM): starting kb loop...
[chuck]: cleaning up...
[chuck]:(3:SEVERE): requesting STOP virtual machine...
[chuck]:(5:INFORM): shutting down KBHitManager...
[chuck]:(5:INFORM): shutting down HID...
[chuck]:(2:SYSTEM): shutting down virtual machine...
[chuck]:(2:SYSTEM):  | shutting down real-time audio...
[chuck]:(2:SYSTEM):  | freeing shreduler...
[chuck]:(3:SEVERE):  | clearing shreds...
[chuck]:(2:SYSTEM): shutting down compiler...
[chuck]:(3:SEVERE):  | shutting down type checker...


that is what you should see . . .

i can see your dac is not initializing . . . .

use the moe file to chuck so we can compare outputs and it's not sample dependent like otf file. Some people have problems with sampler not synthesized sound as kassen said.

Here is my probe output
chuck --probe
please list yours too

Code:
majutsu@majutsu-desktop:~/chuck-1.2.0.7/examples/basic$ chuck --probe
[chuck]: found 5 device(s) ...
[chuck]: ------( chuck -- dac1 )---------------
[chuck]: device name = "hw:ICH5,0"
[chuck]: probe [success] ...
[chuck]: # output channels = 6
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = YES
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   8000 Hz
[chuck]:   11025 Hz
[chuck]:   16000 Hz
[chuck]:   22050 Hz
[chuck]:   32000 Hz
[chuck]:   44100 Hz
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:
[chuck]: ------( chuck -- dac2 )---------------
[chuck]: device name = "hw:ICH5,1"
[chuck]: probe [success] ...
[chuck]: # output channels = 0
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 0
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:
[chuck]: ------( chuck -- dac3 )---------------
[chuck]: device name = "hw:ICH5,2"
[chuck]: probe [success] ...
[chuck]: # output channels = 0
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 0
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:
[chuck]: ------( chuck -- dac4 )---------------
[chuck]: device name = "hw:ICH5,3"
[chuck]: probe [success] ...
[chuck]: # output channels = 0
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 0
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:
[chuck]: ------( chuck -- dac5 )---------------
[chuck]: device name = "hw:ICH5,4"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 0
[chuck]: # duplex Channels = 0
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:
[chuck]: ------( chuck -- 2 MIDI inputs )------
[chuck]:     [0] : "Midi Through Port-0"
[chuck]:     [1] : "USB O2 MIDI 1"
[chuck]:
[chuck]: ------( chuck -- 2 MIDI outputs )-----
[chuck]:     [0] : "Midi Through Port-0"
[chuck]:     [1] : "USB O2 MIDI 1"
[chuck]:


I'm sure we can fix this shortly for you. Persevere!

_________________
All phenomena are atoms in association and dissociation.
Back to top
View user's profile Send private message
spencer



Joined: Aug 16, 2006
Posts: 53
Location: northern california

PostPosted: Mon Jan 22, 2007 5:32 pm    Post subject: Reply with quote  Mark this post and the followings unread

sjef,
This looks suspiciously like a bug in the real-time audio system. rtaudio could be having trouble with your particular device setup, as it is apparenty not finding a default audio output device. This is something of a shot in the dark, but try running chuck with the --dacN option, where N is 2, 3, or 4. This will tell it to use audio device N as the output destination. i.e.
Code:
chuck --dac2 --verbose test.ck
chuck --dac3 --verbose test.ck
chuck --dac4 --verbose test.ck


hope this helps,
spencer
Back to top
View user's profile Send private message
Kassen
Janitor
Janitor


Joined: Jul 06, 2004
Posts: 7678
Location: The Hague, NL
G2 patch files: 3

PostPosted: Mon Jan 22, 2007 6:46 pm    Post subject: Reply with quote  Mark this post and the followings unread

Hey, Sjef, Welcome on board! Good to see a fellow Dutch ChucKist (to be)!
_________________
Kassen
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Tue Jan 23, 2007 3:11 am    Post subject: Reply with quote  Mark this post and the followings unread

This the output (I haven't cancelled all yet) after typing chuck --verbose moe
Code:

chuck --verbose moe
[chuck]:(2:SYSTEM): setting log level to: 5 (INFORM)...
[chuck]:(2:SYSTEM): initializing virtual machine...
[chuck]:(2:SYSTEM):  | behavior: HALT
[chuck]:(2:SYSTEM):  | allocating shreduler...
[chuck]:(2:SYSTEM):  | allocating messaging buffers...
[chuck]:(2:SYSTEM):  | real-time audio: YES
[chuck]:(2:SYSTEM):  | mode: CALLBACK
[chuck]:(2:SYSTEM):  | sample rate: 48000
[chuck]:(2:SYSTEM):  | buffer size: 512
[chuck]:(2:SYSTEM):  | num buffers: 8
[chuck]:(2:SYSTEM):  | devices adc: 0 dac: 0 (default 0)
[chuck]:(2:SYSTEM):  | channels in: 2 out: 2
[chuck]:(2:SYSTEM): initializing compiler...
[chuck]:(3:SEVERE):  | initializing type checker...
[chuck]:(3:SEVERE):  |  | adding base classes...
[chuck]:(3:SEVERE):  |  |  | class 'object'
[chuck]:(3:SEVERE):  |  |  | class 'array'
[chuck]:(3:SEVERE):  |  |  | class 'string'
[chuck]:(3:SEVERE):  |  |  | class 'ugen'
[chuck]:(3:SEVERE):  |  |  | class 'shred'
[chuck]:(3:SEVERE):  |  |  | class 'event'
[chuck]:(3:SEVERE):  |  |  | class 'class'
[chuck]:(3:SEVERE):  | initializing emitter...
[chuck]:(3:SEVERE):  | loading built-in modules...
[chuck]:(3:SEVERE):  |  | module osc...
[chuck]:(3:SEVERE):  |  | module xxx...
[chuck]:(3:SEVERE):  |  | module filter...
[chuck]:(3:SEVERE):  |  | module STK...
[chuck]:(3:SEVERE):  |  | class 'machine'...
[chuck]:(3:SEVERE):  |  | class 'std'...
[chuck]:(5:INFORM):  |  | initializing KBHitManager...
[chuck]:(3:SEVERE):  |  | class 'math'...
[chuck]:(3:SEVERE):  |  | class 'opsc'...
[chuck]:(2:SYSTEM): type dependency resolution: MANUAL
[chuck]:(2:SYSTEM): initializing synthesis engine...
[chuck]:(3:SEVERE):  | initializing 'dac'...
[chuck]:(3:SEVERE):  | initializing 'adc'...
[chuck]:(3:SEVERE):  | initializing 'blackhole'...
[chuck]:(2:SYSTEM):  | initializing 'real-time' audio...
[chuck]:(5:INFORM):  |  | starting kb loop...
[chuck]:(5:INFORM):  |  | initializing callback...
[chuck]:(3:SEVERE):  | allocating buffers for 512 x 2 samples...
[chuck]:(3:SEVERE): starting compilation...
[chuck]:(2:SYSTEM): starting listener on port: 8888...
[chuck]:(2:SYSTEM): running virtual machine...
[chuck]:(3:SEVERE):  | initializing audio buffers...
[chuck]:(3:SEVERE):  | virtual machine running...
[chuck]:(3:SEVERE): starting real-time audio...
[chuck]:(2:SYSTEM): RtApiAlsa: callback thread error...
[chuck]:(5:INFORM):  | (RtApiAlsa: audio read error for device (hw:Intel,0): Input/output error.)
[chuck]:(5:INFORM):  | closing thread...
[chuck]: cleaning up...
[chuck]:(3:SEVERE): requesting STOP virtual machine...
[chuck]:(5:INFORM): shutting down KBHitManager...
[chuck]:(5:INFORM): shutting down HID...
[chuck]:(2:SYSTEM): shutting down virtual machine...
[chuck]:(2:SYSTEM):  | shutting down real-time audio...
[chuck]:(2:SYSTEM):  | freeing shreduler...
[chuck]:(3:SEVERE):  | clearing shreds...
[chuck]:(2:SYSTEM): shutting down compiler...
[chuck]:(3:SEVERE):  | shutting down type checker...


I see some error signal. Any ideas about it?
Back to top
View user's profile Send private message
Fojaneghe



Joined: Jan 17, 2007
Posts: 11
Location: Trento

PostPosted: Tue Jan 23, 2007 3:19 am    Post subject: Reply with quote  Mark this post and the followings unread

Oh I've forgotten to reply to Majutsu's question: Yes, Xmms works fine! The Rythmbox music player instead not. Confused
Back to top
View user's profile Send private message
sjef



Joined: Jan 22, 2007
Posts: 6
Location: Netherlands

PostPosted: Tue Jan 23, 2007 9:26 am    Post subject: Reply with quote  Mark this post and the followings unread

Hi, Majutsu,

I did as you said, here's the output of

Code:

sdk@sdk-desktop:~/chuck-1.2.0.7/examples/basic$ chuck --verbose moe
[chuck]:(2:SYSTEM): setting log level to: 5 (INFORM)...
[chuck]:(2:SYSTEM): initializing virtual machine...
[chuck]:(2:SYSTEM):  | behavior: HALT
[chuck]:(2:SYSTEM):  | allocating shreduler...
[chuck]:(2:SYSTEM):  | allocating messaging buffers...
[chuck]:(2:SYSTEM):  | real-time audio: YES
[chuck]:(2:SYSTEM):  | mode: CALLBACK
[chuck]:(2:SYSTEM):  | sample rate: 48000
[chuck]:(2:SYSTEM):  | buffer size: 512
[chuck]:(2:SYSTEM):  | num buffers: 8
[chuck]:(2:SYSTEM):  | devices adc: 0 dac: 0 (default 0)
[chuck]:(2:SYSTEM):  | channels in: 2 out: 2
[chuck]:(2:SYSTEM): initializing compiler...
[chuck]:(3:SEVERE):  | initializing type checker...
[chuck]:(3:SEVERE):  |  | adding base classes...
[chuck]:(3:SEVERE):  |  |  | class 'object'
[chuck]:(3:SEVERE):  |  |  | class 'array'
[chuck]:(3:SEVERE):  |  |  | class 'string'
[chuck]:(3:SEVERE):  |  |  | class 'ugen'
[chuck]:(3:SEVERE):  |  |  | class 'shred'
[chuck]:(3:SEVERE):  |  |  | class 'event'
[chuck]:(3:SEVERE):  |  |  | class 'class'
[chuck]:(3:SEVERE):  | initializing emitter...
[chuck]:(3:SEVERE):  | loading built-in modules...
[chuck]:(3:SEVERE):  |  | module osc...
[chuck]:(3:SEVERE):  |  | module xxx...
[chuck]:(3:SEVERE):  |  | module filter...
[chuck]:(3:SEVERE):  |  | module STK...
[chuck]:(3:SEVERE):  |  | class 'machine'...
[chuck]:(3:SEVERE):  |  | class 'std'...
[chuck]:(5:INFORM):  |  | initializing KBHitManager...
[chuck]:(3:SEVERE):  |  | class 'math'...
[chuck]:(3:SEVERE):  |  | class 'opsc'...
[chuck]:(2:SYSTEM): type dependency resolution: MANUAL
[chuck]:(2:SYSTEM): initializing synthesis engine...
[chuck]:(3:SEVERE):  | initializing 'dac'...
[chuck]:(3:SEVERE):  | initializing 'adc'...
[chuck]:(3:SEVERE):  | initializing 'blackhole'...
[chuck]:(2:SYSTEM):  | initializing 'real-time' audio...
[chuck]:(5:INFORM):  |  | initializing callback...
[chuck]:(3:SEVERE):  | allocating buffers for 512 x 2 samples...
[chuck]:(3:SEVERE): starting compilation...
[chuck]:(5:INFORM):  |  | starting kb loop...
[chuck]:(2:SYSTEM): starting listener on port: 8888...
[chuck]:(2:SYSTEM): running virtual machine...
[chuck]:(3:SEVERE):  | initializing audio buffers...
[chuck]:(3:SEVERE):  | virtual machine running...
[chuck]:(3:SEVERE): starting real-time audio...
[chuck]:(2:SYSTEM): RtApiAlsa: callback thread error...
[chuck]:(5:INFORM):  | (RtApiAlsa: audio read error for device (hw:CA0106,0): Input/output error.)
[chuck]:(5:INFORM):  | closing thread...


Here Chuck hangs (I waited some 15min), untill I press CTRL+C. After that, follows:

Code:

[chuck]:(3:SEVERE): requesting STOP virtual machine...
[chuck]:(5:INFORM): shutting down KBHitManager...
[chuck]:(5:INFORM): shutting down HID...
[chuck]:(2:SYSTEM): shutting down virtual machine...
[chuck]:(2:SYSTEM):  | shutting down real-time audio...
[chuck]:(2:SYSTEM):  | freeing shreduler...
[chuck]:(3:SEVERE):  | clearing shreds...
[chuck]:(2:SYSTEM): shutting down compiler...
[chuck]:(3:SEVERE):  | shutting down type checker...
sdk@sdk-desktop:~/chuck-1.2.0.7/examples/basic$


By the way, the really strange part is that after I tested Spencer's ideas (NOTE: I did this before doing the above!), all of a sudden, string output with Kassen's example works a-ok, without specifying --dacN options at all... Weird.. Wait, let's redo chuck --probe:

Code:

[chuck]: found 4 device(s) ...
[chuck]: ------( chuck -- dac1 )---------------
[chuck]: device name = "hw:CA0106,0"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = YES
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- dac2 )---------------
[chuck]: device name = "hw:CA0106,1"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- dac3 )---------------
[chuck]: device name = "hw:CA0106,2"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- dac4 )---------------
[chuck]: device name = "hw:CA0106,3"
[chuck]: probe [success] ...
[chuck]: # output channels = 2
[chuck]: # input channels  = 2
[chuck]: # duplex Channels = 2
[chuck]: default device = NO
[chuck]: natively supported data formats:
[chuck]:   16-bit int
[chuck]:   32-bit int
[chuck]: supported sample rates:
[chuck]:   48000 Hz
[chuck]:   96000 Hz
[chuck]:   192000 Hz
[chuck]:
[chuck]: ------( chuck -- 2 MIDI inputs )------
[chuck]:     [0] : "Midi Through Port-0"
[chuck]:     [1] : "CA0106 MPU-401 (UART)"
[chuck]:
[chuck]: ------( chuck -- 2 MIDI outputs )-----
[chuck]:     [0] : "Midi Through Port-0"
[chuck]:     [1] : "CA0106 MPU-401 (UART)"
[chuck]:


It has changed (compare to my previous post) ! Strange indeed, no? Unfortunately, still no sound. Now I seem to have the same problem as Fojaneghe, 'RtApiAlsa: audio read error for device' .....

Please advice..

Regards,

Sjef.

p.s. kassen, thanks! I checked out your website - very informative - I discovered creme spring fest thanks to it - i'm a big legowelt fan so i'll probably go, and hear your performance too!
Back to top
View user's profile Send private message
sjef



Joined: Jan 22, 2007
Posts: 6
Location: Netherlands

PostPosted: Tue Jan 23, 2007 11:44 am    Post subject: Reply with quote  Mark this post and the followings unread

Hi all,

I got sound!! I was playing around with the --dac parameter, and found --dac1 to be the only one that gets ChucK past 'starting kb loop'. The error I get with this, is the audio read error in my previous post.

So I started experimenting with passing --adcN options. None work, except N values above 4 !!

so with

Code:

sdk@sdk-desktop:~/chuck-1.2.0.7/examples/basic$ chuck --verbose --dac1 --adc5 moe
[chuck]:(2:SYSTEM): setting log level to: 5 (INFORM)...
[chuck]:(2:SYSTEM): initializing virtual machine...
[chuck]:(2:SYSTEM):  | behavior: HALT
[chuck]:(2:SYSTEM):  | allocating shreduler...
[chuck]:(2:SYSTEM):  | allocating messaging buffers...
[chuck]:(2:SYSTEM):  | real-time audio: YES
[chuck]:(2:SYSTEM):  | mode: CALLBACK
[chuck]:(2:SYSTEM):  | sample rate: 48000
[chuck]:(2:SYSTEM):  | buffer size: 512
[chuck]:(2:SYSTEM):  | num buffers: 8
[chuck]:(2:SYSTEM):  | devices adc: 5 dac: 1 (default 0)
[chuck]:(2:SYSTEM):  | channels in: 2 out: 2
[chuck]:(2:SYSTEM): initializing compiler...
[chuck]:(3:SEVERE):  | initializing type checker...
[chuck]:(3:SEVERE):  |  | adding base classes...
[chuck]:(3:SEVERE):  |  |  | class 'object'
[chuck]:(3:SEVERE):  |  |  | class 'array'
[chuck]:(3:SEVERE):  |  |  | class 'string'
[chuck]:(3:SEVERE):  |  |  | class 'ugen'
[chuck]:(3:SEVERE):  |  |  | class 'shred'
[chuck]:(3:SEVERE):  |  |  | class 'event'
[chuck]:(3:SEVERE):  |  |  | class 'class'
[chuck]:(3:SEVERE):  | initializing emitter...
[chuck]:(3:SEVERE):  | loading built-in modules...
[chuck]:(3:SEVERE):  |  | module osc...
[chuck]:(3:SEVERE):  |  | module xxx...
[chuck]:(3:SEVERE):  |  | module filter...
[chuck]:(3:SEVERE):  |  | module STK...
[chuck]:(3:SEVERE):  |  | class 'machine'...
[chuck]:(3:SEVERE):  |  | class 'std'...
[chuck]:(5:INFORM):  |  | initializing KBHitManager...
[chuck]:(3:SEVERE):  |  | class 'math'...
[chuck]:(3:SEVERE):  |  | class 'opsc'...
[chuck]:(2:SYSTEM): type dependency resolution: MANUAL
[chuck]:(2:SYSTEM): initializing synthesis engine...
[chuck]:(3:SEVERE):  | initializing 'dac'...
[chuck]:(3:SEVERE):  | initializing 'adc'...
[chuck]:(3:SEVERE):  | initializing 'blackhole'...
[chuck]:(2:SYSTEM):  | initializing 'real-time' audio...
[chuck]:(5:INFORM):  |  | exception caught: '(via rtaudio): 'inputDevice' parameter value (5) is invalid.'...
[chuck]:(5:INFORM):  |  | trying 0 input 2 output...
[chuck]:(5:INFORM):  |  | initializing callback (again)...
[chuck]:(3:SEVERE):  | allocating buffers for 512 x 2 samples...
[chuck]:(3:SEVERE): starting compilation...
[chuck]:(2:SYSTEM): starting listener on port: 8888...
[chuck]:(5:INFORM): starting kb loop...
[chuck]:(2:SYSTEM): running virtual machine...
[chuck]:(3:SEVERE):  | initializing audio buffers...
[chuck]:(3:SEVERE):  | virtual machine running...
[chuck]:(3:SEVERE): starting real-time audio...
[chuck]: cleaning up...
[chuck]:(3:SEVERE): requesting STOP virtual machine...
[chuck]:(5:INFORM): shutting down KBHitManager...
[chuck]:(5:INFORM): shutting down HID...
[chuck]:(2:SYSTEM): shutting down virtual machine...
[chuck]:(2:SYSTEM):  | shutting down real-time audio...
[chuck]:(2:SYSTEM):  | freeing shreduler...
[chuck]:(3:SEVERE):  | clearing shreds...
[chuck]:(2:SYSTEM): shutting down compiler...
[chuck]:(3:SEVERE):  | shutting down type checker...
sdk@sdk-desktop:~/chuck-1.2.0.7/examples/basic$


there is actually an exception, but I gues it's a good one for me Wink I hear the sounds! Also, chuck --dac1 --adc5 otf* works! Sounds really great too!

I think it's some sort of problem with my hardware (soundblaster live).. Maybe even a bug as spencer said...

Regards,

Sjef.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic Moderators: Kassen
Page 2 of 3 [55 Posts]
View unread posts
View new posts in the last week
Goto page: Previous 1, 2, 3 Next
Mark the topic unread :: View previous topic :: View next topic
 Forum index » DIY Hardware and Software » ChucK programming language
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Forum with support of Syndicator RSS
Powered by phpBB © 2001, 2005 phpBB Group
Copyright © 2003 through 2009 by electro-music.com - Conditions Of Use