sndobj-devel Mailing List for The Sound Object Library (Page 4)
Status: Abandoned
Brought to you by:
veplaini
This list is closed, nobody may subscribe to it.
2007 |
Jan
(57) |
Feb
(16) |
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
(8) |
Aug
(24) |
Sep
(12) |
Oct
(4) |
Nov
(11) |
Dec
(9) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(9) |
Feb
(13) |
Mar
(3) |
Apr
(10) |
May
(11) |
Jun
(12) |
Jul
(8) |
Aug
(9) |
Sep
(1) |
Oct
(24) |
Nov
(11) |
Dec
(19) |
2009 |
Jan
(5) |
Feb
(24) |
Mar
(43) |
Apr
(9) |
May
(14) |
Jun
(28) |
Jul
|
Aug
(6) |
Sep
|
Oct
(4) |
Nov
(10) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(9) |
Dec
|
2011 |
Jan
(3) |
Feb
(3) |
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: victor <Vic...@nu...> - 2009-06-04 16:43:44
|
I will have a look... ----- Original Message ----- From: Daniel Skinner To: sndobj Sent: Thursday, June 04, 2009 5:40 PM Subject: Re: [Sndobj-devel] JackIO seg fault Well i just installed the latest jack from svn, 1.9.3 and it seems to be a non issue, no segfaulting. So maybe it can be ignored? i dunno, maybe theres something there that could be improved ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ OpenSolaris 2009.06 is a cutting edge operating system for enterprises looking to deploy the next generation of Solaris that includes the latest innovations from Sun and the OpenSource community. Download a copy and enjoy capabilities such as Networking, Storage and Virtualization. Go to: http://p.sf.net/sfu/opensolaris-get ------------------------------------------------------------------------------ _______________________________________________ Sndobj-devel mailing list Snd...@li... https://lists.sourceforge.net/lists/listinfo/sndobj-devel |
From: Daniel S. <das...@gm...> - 2009-06-04 16:40:33
|
Well i just installed the latest jack from svn, 1.9.3 and it seems to be a non issue, no segfaulting. So maybe it can be ignored? i dunno, maybe theres something there that could be improved |
From: Daniel S. <das...@gm...> - 2009-06-04 16:28:46
|
Hi, I have, since using sndobj for the longest, occasionally hit a snag when making an initial connection to jack where it would segfault. Simply trying again seemd to get around the random error. Well ive recently updated my jack to the latest found in jaunty-backports of 64studio (the 686 variant, so not 64bit) which is listed as jack1.8. Now the segfault occurs everytime, heres a backtrace through the python interpretor. Other jack applications such as ardour seem to be working fine. >>> import sndobj >>> jack = sndobj.SndJackIO('vizi') [New Thread 0xb6c67b90 (LWP 3614)] [New Thread 0xb5133b90 (LWP 3615)] jack_port_get_buffer called with an incorrect port 7303982 Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb5133b90 (LWP 3615)] 0xb7880a50 in SndJackIO::JProcess () from /usr/lib/libsndobj.so.2.6.5 Current language: auto; currently asm (gdb) bt #0 0xb7880a50 in SndJackIO::JProcess () from /usr/lib/libsndobj.so.2.6.5 #1 0xb7880bb4 in jprocess_callback () from /usr/lib/libsndobj.so.2.6.5 #2 0xb773a460 in Jack::JackClient::Execute () from /usr/lib/libjack.so.0 #3 0xb7745578 in Jack::JackPosixThread::ThreadHandler () from /usr/lib/libjack.so.0 #4 0xb7fb84ff in start_thread () from /lib/tls/i686/cmov/libpthread.so.0 #5 0xb7eee49e in clone () from /lib/tls/i686/cmov/libc.so.6 |
From: Daniel S. <das...@gm...> - 2009-05-28 14:10:15
|
Hey, I made a bunch of updates to my vizi sound project, knob-type controls contained within that circle/orb thing, creation and destruction of objects, new objects like SndIn, VDelay, Gain, info boxes on hover for relevant parameter information, and cut another video. After i refactor some code and fix it so the physics engine isn't a requirement to run the program, im gonna make a code release for anyone interested. check it out at http://vizi.dasa.cc |
From: Daniel S. <das...@gm...> - 2009-05-27 16:18:07
|
Ok, here's an interesting tidbit, it seems that when i increase the delay time by small increments, it works just fine, never segfaulting, if I then start decreasing the delay time by small segments, it doesn't take to long before it segfaults. I have a knob that adjusts the delay time, i can seem to infinitely increase the delay time without error. Ive tested this multiple times and it sort of correlates with with the random floats from the command line tests ive done where a decrease in delay time causes the segfault, I modded the code to do as you suggested, basically doing this when changing the value if changing: thread.ProcOff() time.sleep(1) cmb.SetDelayTime(f) thread.ProcOn() i then ran my program again, and it did exactly as described above, works fine for incrementing, but segfaulted when i started decrementing On Wed, May 27, 2009 at 12:04 PM, Daniel Skinner <das...@gm...> wrote: > Hey, > > Heres a backtrace for a segfault when calling SetDelayTime. This is out of > context of my program, where normally it doesn't happen first time around, > but this particular time it did (i was going to write a while loop setting > it to a random float till it segfaulted). Im not particular versed on > debugging and backtracing like this so if theres anything else i can do, let > me know > > >>> thread = sndobj.SndThread() > >>> thread.ProcOn() > [New Thread 0xb6af9b90 (LWP 16984)] > 0 > >>> cmb = sndobj.Comb(.1, .1, sndobj.SndIn()) > >>> thread.AddObj(cmb) > 1 > >>> cmb.SetDelayTime(.22) > > Program received signal SIGSEGV, Segmentation fault. > [Switching to Thread 0xb6af9b90 (LWP 16984)] > 0xb7822ad6 in Comb::DoProcess () from /usr/lib/libsndobj.so.2.6.5 > (gdb) bt > #0 0xb7822ad6 in Comb::DoProcess () from /usr/lib/libsndobj.so.2.6.5 > #1 0xb785bb8e in threadfunc () from /usr/lib/libsndobj.so.2.6.5 > #2 0xb7f984ff in start_thread () from /lib/tls/i686/cmov/libpthread.so.0 > #3 0xb7ece49e in clone () from /lib/tls/i686/cmov/libc.so.6 > (gdb) > > |
From: Daniel S. <das...@gm...> - 2009-05-27 16:04:47
|
Hey, Heres a backtrace for a segfault when calling SetDelayTime. This is out of context of my program, where normally it doesn't happen first time around, but this particular time it did (i was going to write a while loop setting it to a random float till it segfaulted). Im not particular versed on debugging and backtracing like this so if theres anything else i can do, let me know >>> thread = sndobj.SndThread() >>> thread.ProcOn() [New Thread 0xb6af9b90 (LWP 16984)] 0 >>> cmb = sndobj.Comb(.1, .1, sndobj.SndIn()) >>> thread.AddObj(cmb) 1 >>> cmb.SetDelayTime(.22) Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb6af9b90 (LWP 16984)] 0xb7822ad6 in Comb::DoProcess () from /usr/lib/libsndobj.so.2.6.5 (gdb) bt #0 0xb7822ad6 in Comb::DoProcess () from /usr/lib/libsndobj.so.2.6.5 #1 0xb785bb8e in threadfunc () from /usr/lib/libsndobj.so.2.6.5 #2 0xb7f984ff in start_thread () from /lib/tls/i686/cmov/libpthread.so.0 #3 0xb7ece49e in clone () from /lib/tls/i686/cmov/libc.so.6 (gdb) |
From: <Vic...@nu...> - 2009-05-27 14:43:45
|
Not sure about this, you should be able to createa Comb without an input and then assign it later.Maybe it's a bug. Perhaps if you can prepare a smallscript demonstrating the problem I can take a look.RegardsVictor----- Original Message -----From: Daniel Skinner <das...@gm...>Date: Wednesday, May 27, 2009 3:24 pmSubject: [Sndobj-devel] class Comb: "Failed to allocate Vector Memory"To: sndobj <snd...@li...>> Hi,> > Im having some problems the Comb class. Basically I instantiate > an instance like this> > cmb = sndobj.Comb(.1, .1, None)> > Now if i add this to my thread it will generate an > ErrorMessage() "Failed to allocate vector memory". I > guess maybe because it needs a null SndObj() for input? But the > reason I bring this up is in my program where I set inputs and > outputs on oscili's, sometimes i .SetInput(None) on > oscili's just fine, where as if i do the same on the Comb > object, it will error with the above.> > > Writing this email is making me think this is because > oscili's are generating some kind of noise so it can > allocate or do w/e it needs to, where as the comb doesn't do > anything by default so it at the least needs a blank SndObj as > input to function correctly in a thread. Any clarification on > this would be appreciated.> > > Thanks,> Daniel> > > -----------------------------------------------------------------> -------------> Register Now for Creativity and Technology (CaT), June 3rd, NYC. > CaT > is a gathering of tech-side developers & brand creativity > professionals. Meet> the minds behind Google Creative Lab, Visual Complexity, > Processing, & > iPhoneDevCamp as they present alongside digital heavyweights > like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-> com > _______________________________________________> Sndobj-devel mailing list> Snd...@li...> https://lists.sourceforge.net/lists/listinfo/sndobj-develDr Victor Lazzarini, Senior Lecturer, Dept. of Music,National University of Ireland, Maynooth |
From: Daniel S. <das...@gm...> - 2009-05-27 14:24:26
|
Hi, Im having some problems the Comb class. Basically I instantiate an instance like this cmb = sndobj.Comb(.1, .1, None) Now if i add this to my thread it will generate an ErrorMessage() "Failed to allocate vector memory". I guess maybe because it needs a null SndObj() for input? But the reason I bring this up is in my program where I set inputs and outputs on oscili's, sometimes i .SetInput(None) on oscili's just fine, where as if i do the same on the Comb object, it will error with the above. Writing this email is making me think this is because oscili's are generating some kind of noise so it can allocate or do w/e it needs to, where as the comb doesn't do anything by default so it at the least needs a blank SndObj as input to function correctly in a thread. Any clarification on this would be appreciated. Thanks, Daniel |
From: victor <Vic...@nu...> - 2009-05-25 21:59:51
|
Daniel, looks like a great job, well done. Regards Victor ----- Original Message ----- From: Daniel Skinner To: sndobj Sent: Monday, May 25, 2009 10:08 PM Subject: [Sndobj-devel] .deb for i386 amd64 and lpia Hey I started on debian build scripts and commited them to CVS under a debian folder. I also started a ppa on launchpad and submitted a debian source package build. This autobuilds across i386, amd64, and lpia. Heres a link to the ppa https://launchpad.net/~dasacc22/+archive/sndobj Right now its built with the numpy module, and alsa & jack ties. It installs the .so files and sndobj.py. Right now theres an older version of sndobj development files in the regular ubuntu repositories so im going to look into breaking up the different parts of the package build and updating the libsndobj package in ubuntu (or maybe its based in debian, ill have to check), then submit that for inclusion into the main repo of whichever distro. till then, the ppa works great ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://www.creativitycat.com ------------------------------------------------------------------------------ _______________________________________________ Sndobj-devel mailing list Snd...@li... https://lists.sourceforge.net/lists/listinfo/sndobj-devel |
From: Daniel S. <das...@gm...> - 2009-05-25 21:10:48
|
Hey I started on debian build scripts and commited them to CVS under a debian folder. I also started a ppa on launchpad and submitted a debian source package build. This autobuilds across i386, amd64, and lpia. Heres a link to the ppa https://launchpad.net/~dasacc22/+archive/sndobj Right now its built with the numpy module, and alsa & jack ties. It installs the .so files and sndobj.py. Right now theres an older version of sndobj development files in the regular ubuntu repositories so im going to look into breaking up the different parts of the package build and updating the libsndobj package in ubuntu (or maybe its based in debian, ill have to check), then submit that for inclusion into the main repo of whichever distro. till then, the ppa works great |
From: victor <Vic...@nu...> - 2009-05-25 19:00:39
|
http://sourceforge.net/project/downloading.php?group_id=165451&filename=SndObj_Manual-2.6.4.pdf&a=43419393 ----- Original Message ----- From: siris phi To: snd...@li... Sent: Monday, May 25, 2009 9:44 AM Subject: [Sndobj-devel] where'd all the docs go? Just getting back into workin with SndObj, and I can't find the manual anymore, since the site is now on sourceforge. Anyone know if it is still hosted, and where? ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://www.creativitycat.com ------------------------------------------------------------------------------ _______________________________________________ Sndobj-devel mailing list Snd...@li... https://lists.sourceforge.net/lists/listinfo/sndobj-devel |
From: siris p. <sir...@gm...> - 2009-05-25 09:02:28
|
yeah, keep it up Dan. cheers On Sat, May 23, 2009 at 11:45 PM, Daniel Skinner <das...@gm...> wrote: > Hi > > I just wanted to share something Ive been thinking about for a long time > and just started working on recently. Its striving to be a different kind of > mixer. I was more or less hoping to sort of visualize sndobj's api in a less > conventional way. I use pyglet (opengl with c-types) for rendering to screen > and I use box2d (2d physics engine) to add an extra dynamic to the mixing. > Anyway, its in some extremely early stages but maybe interesting none the > less. > > http://vizi.dasa.cc > > Im still working out the details of the interface, in which then ill start > expanding the possible objects to all thats offered by sndobj. Also, > something thats not stated on the site, is I sort of see whats in the > example video as an object you can zoom in and out of. So some objects are > actual sndobj objects, but others that you can drop and and route and what > not are sndobj mixer "environments" that you can jump into and out of, etc > etc > > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. > Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://www.creativitycat.com > _______________________________________________ > Sndobj-devel mailing list > Snd...@li... > https://lists.sourceforge.net/lists/listinfo/sndobj-devel > > |
From: John G. <glo...@gm...> - 2009-05-25 08:49:25
|
It looks interesting, keep us posted. It seems like it would suit a multi-touch interface. John 2009/5/24 Daniel Skinner <das...@gm...>: > Hi > > I just wanted to share something Ive been thinking about for a long time and > just started working on recently. Its striving to be a different kind of > mixer. I was more or less hoping to sort of visualize sndobj's api in a less > conventional way. I use pyglet (opengl with c-types) for rendering to screen > and I use box2d (2d physics engine) to add an extra dynamic to the mixing. > Anyway, its in some extremely early stages but maybe interesting none the > less. > > http://vizi.dasa.cc > > Im still working out the details of the interface, in which then ill start > expanding the possible objects to all thats offered by sndobj. Also, > something thats not stated on the site, is I sort of see whats in the > example video as an object you can zoom in and out of. So some objects are > actual sndobj objects, but others that you can drop and and route and what > not are sndobj mixer "environments" that you can jump into and out of, etc > etc > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. > Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://www.creativitycat.com > _______________________________________________ > Sndobj-devel mailing list > Snd...@li... > https://lists.sourceforge.net/lists/listinfo/sndobj-devel > > |
From: siris p. <sir...@gm...> - 2009-05-25 08:44:27
|
Just getting back into workin with SndObj, and I can't find the manual anymore, since the site is now on sourceforge. Anyone know if it is still hosted, and where? |
From: Daniel S. <das...@gm...> - 2009-05-24 06:45:44
|
Hi I just wanted to share something Ive been thinking about for a long time and just started working on recently. Its striving to be a different kind of mixer. I was more or less hoping to sort of visualize sndobj's api in a less conventional way. I use pyglet (opengl with c-types) for rendering to screen and I use box2d (2d physics engine) to add an extra dynamic to the mixing. Anyway, its in some extremely early stages but maybe interesting none the less. http://vizi.dasa.cc Im still working out the details of the interface, in which then ill start expanding the possible objects to all thats offered by sndobj. Also, something thats not stated on the site, is I sort of see whats in the example video as an object you can zoom in and out of. So some objects are actual sndobj objects, but others that you can drop and and route and what not are sndobj mixer "environments" that you can jump into and out of, etc etc |
From: Daniel S. <das...@gm...> - 2009-05-07 17:52:10
|
gah, nevermind, I forgot about the Mixer class which does what I need. On Wed, May 6, 2009 at 2:57 AM, Daniel Skinner <das...@gm...> wrote: > Hi, > > I need to be able to play multiple sounds, from files, memory, and sndobj > Classes such as Oscili, and as best as I can figure, I need multiple > threads. I read that SndBuffer can be used to obtain the signals from each > thread but Im at a lost with what to do from there, or how to get there > pricesly. As far as I can tell, I can not simply call ProcOn for multiple > threads as all subsequent threads will simply fail to start. Threads do not > have a DoProcess so im left a bit bewildered on how to approach this. Once I > have the SndBuffer being filled with the data, what does it get output to? > > I couldn't find any c++ or python examples of SndBuffer to see what I > should be doing. Any help is much appreciated > > Thanks, > Daniel > |
From: Daniel S. <das...@gm...> - 2009-05-06 06:57:42
|
Hi, I need to be able to play multiple sounds, from files, memory, and sndobj Classes such as Oscili, and as best as I can figure, I need multiple threads. I read that SndBuffer can be used to obtain the signals from each thread but Im at a lost with what to do from there, or how to get there pricesly. As far as I can tell, I can not simply call ProcOn for multiple threads as all subsequent threads will simply fail to start. Threads do not have a DoProcess so im left a bit bewildered on how to approach this. Once I have the SndBuffer being filled with the data, what does it get output to? I couldn't find any c++ or python examples of SndBuffer to see what I should be doing. Any help is much appreciated Thanks, Daniel |
From: '2+ <ele...@gm...> - 2009-04-25 14:41:57
|
okay i also tested this on my old optiplex and the result was the same with mini9 ~# aptitude install python-sndobj Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information Initializing package states... Done Couldn't find any package whose name or description matched "python-sndobj" Couldn't find any package whose name or description matched "python-sndobj" No packages will be installed, upgraded, or removed. so i think it's not mini9 prob but the system or maybe the way i am handling things On Wed, Apr 01, 2009 at 01:59:07AM -0400, Daniel Skinner wrote: > Hi all, > > I just finished setting up a rudimentary repo for the upcoming Ubuntu (22 > days n all) Jaunty. Its actually hosted from from the sourceforge site and > has a public key for the repo to make it all nice and tidy. > > If your using Jaunty, you can add the following to your > /etc/apt/sources.list > > # SndObj Library > deb http://sndobj.sourceforge.net/ubuntu jaunty unstable > > you can download the following key and add it to apt-key > $> wget http://sndobj.sourceforge.net/ubuntu/pubkey.asc > $> sudo apt-key add pubkey.asc > > now you can update and install > > $> sudo aptitude update > $> sudo aptitude install python-sndobj > > This was a cvs checkout built from today. Once I get builds for the 2.6.6 > release together, intrepid/jaunty, 32/64bit, ill look into posting relevant > instructions on the homepage. -- '2+ http://sarigama.namaste.jp/ is podcasting his microtuned music http://www002.upp.so-net.ne.jp/buyobuyo/micro/rss.xml |
From: John G. <glo...@gm...> - 2009-04-19 13:50:50
|
Thanks, glad it's working out for you. John 2009/4/18 Daniel Skinner <das...@gm...>: > Hi, > > Just wanted to give thanks for the numpy addition. Ive finally gotten around > to using it recently and its been working out great. > > Thanks, > Daniel > > ------------------------------------------------------------------------------ > Stay on top of everything new and different, both inside and > around Java (TM) technology - register by April 22, and save > $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. > 300 plus technical and hands-on sessions. Register today. > Use priority code J9JMT32. http://p.sf.net/sfu/p > _______________________________________________ > Sndobj-devel mailing list > Snd...@li... > https://lists.sourceforge.net/lists/listinfo/sndobj-devel > > |
From: Daniel S. <das...@gm...> - 2009-04-18 08:23:16
|
I guess there seems to be an error with downloading the Packages.gz file, I must have a stale entry on my laptop. Must have occured when i signed my Release file. Ill try and get this fixed, until then you can get the deb package with wget $> wget http://sndobj.sourceforge.net/ubuntu/jaunty/python-sndobj_2.6.99-3_i386.deb Note, you'll need to use something like wget and not a browser as the sourceforget server will say the link is plain/text when its not. On Thu, Apr 16, 2009 at 8:29 PM, '2+ <ele...@gm...> wrote: > thanx for checking! > and it still complains .. so might be my error .. sorry .. > well .. am always root .. so > > > Ok I just checked things out and everything is working fine. what kind of > > results do you get when you do a > > > > $> sudo aptitude search sndobj > > ~# aptitude search sndobj > p libsndobj-dev - Sound Object development files > p libsndobj2c2 - Sound Object library > > í> can you paste your /etc/apt/sources.list file? or did you add it under > > sources.list.d/? > > i have: > > deb http://sndobj.sourceforge.net/ubuntu jaunty unstable > > in my /etc/apt/sources.list > hmm is that "unstable" okay? > > > If theres a problem with the line you added, it should show up in > aptitude > > update. What do you get when you perform a > > > > #> sudo aptitude update | grep sndobj > > ~# aptitude update | grep sndobj > Hit http://sndobj.sourceforge.net jaunty Release.gpg > Ign http://sndobj.sourceforge.net jaunty/unstable Translation-en_US > Hit http://sndobj.sourceforge.net jaunty Release > > but still > > ~# aptitude install python-sndobj > Reading package lists... Done > Building dependency tree > Reading state information... Done > Reading extended state information > Initializing package states... Done > Couldn't find any package whose name or description matched "python-sndobj" > Couldn't find any package whose name or description matched "python-sndobj" > No packages will be installed, upgraded, or removed. > 0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded. > > this is weird .. init!? > tia! > > -- > '2+ > http://sarigama.namaste.jp/ > is > podcasting his microtuned music > http://www002.upp.so-net.ne.jp/buyobuyo/micro/rss.xml > > > ------------------------------------------------------------------------------ > Stay on top of everything new and different, both inside and > around Java (TM) technology - register by April 22, and save > $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. > 300 plus technical and hands-on sessions. Register today. > Use priority code J9JMT32. http://p.sf.net/sfu/p > _______________________________________________ > Sndobj-devel mailing list > Snd...@li... > https://lists.sourceforge.net/lists/listinfo/sndobj-devel > |
From: Daniel S. <das...@gm...> - 2009-04-18 08:19:02
|
Hi, Just wanted to give thanks for the numpy addition. Ive finally gotten around to using it recently and its been working out great. Thanks, Daniel |
From: '2+ <ele...@gm...> - 2009-04-17 00:30:08
|
thanx for checking! and it still complains .. so might be my error .. sorry .. well .. am always root .. so > Ok I just checked things out and everything is working fine. what kind of > results do you get when you do a > > $> sudo aptitude search sndobj ~# aptitude search sndobj p libsndobj-dev - Sound Object development files p libsndobj2c2 - Sound Object library í> can you paste your /etc/apt/sources.list file? or did you add it under > sources.list.d/? i have: deb http://sndobj.sourceforge.net/ubuntu jaunty unstable in my /etc/apt/sources.list hmm is that "unstable" okay? > If theres a problem with the line you added, it should show up in aptitude > update. What do you get when you perform a > > #> sudo aptitude update | grep sndobj ~# aptitude update | grep sndobj Hit http://sndobj.sourceforge.net jaunty Release.gpg Ign http://sndobj.sourceforge.net jaunty/unstable Translation-en_US Hit http://sndobj.sourceforge.net jaunty Release but still ~# aptitude install python-sndobj Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information Initializing package states... Done Couldn't find any package whose name or description matched "python-sndobj" Couldn't find any package whose name or description matched "python-sndobj" No packages will be installed, upgraded, or removed. 0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded. this is weird .. init!? tia! -- '2+ http://sarigama.namaste.jp/ is podcasting his microtuned music http://www002.upp.so-net.ne.jp/buyobuyo/micro/rss.xml |
From: Daniel S. <das...@gm...> - 2009-04-16 22:07:13
|
Hi, Ok I just checked things out and everything is working fine. what kind of results do you get when you do a $> sudo aptitude search sndobj can you paste your /etc/apt/sources.list file? or did you add it under sources.list.d/? If theres a problem with the line you added, it should show up in aptitude update. What do you get when you perform a #> sudo aptitude update | grep sndobj On Sun, Apr 12, 2009 at 8:39 AM, '2+ <ele...@gm...> wrote: > hi! > > i installed jaunty to my mini9 > so i followed the instruction > most went well but in the end resulted into: > > E: Couldn't find the package python-sndobj > > On Wed, Apr 01, 2009 at 01:59:07AM -0400, Daniel Skinner wrote: > > Hi all, > > > > I just finished setting up a rudimentary repo for the upcoming Ubuntu (22 > > days n all) Jaunty. Its actually hosted from from the sourceforge site > and > > has a public key for the repo to make it all nice and tidy. > > > > If your using Jaunty, you can add the following to your > > /etc/apt/sources.list > > > > # SndObj Library > > deb http://sndobj.sourceforge.net/ubuntu jaunty unstable > > > > you can download the following key and add it to apt-key > > $> wget http://sndobj.sourceforge.net/ubuntu/pubkey.asc > > $> sudo apt-key add pubkey.asc > > > > now you can update and install > > > > $> sudo aptitude update > > $> sudo aptitude install python-sndobj > > > > This was a cvs checkout built from today. Once I get builds for the 2.6.6 > > release together, intrepid/jaunty, 32/64bit, ill look into posting > relevant > > instructions on the homepage. > > -- > '2+ > podcasting muzikinda thang > http://sarigama.namaste.jp/podcast/rss.xml > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > _______________________________________________ > Sndobj-devel mailing list > Snd...@li... > https://lists.sourceforge.net/lists/listinfo/sndobj-devel > |
From: Daniel S. <das...@gm...> - 2009-04-12 12:43:15
|
hi, ill investigate, i noticed a few days ago that there was a problem downloading info from the repo, something must have changed I just haven't had time yet to look On Sun, Apr 12, 2009 at 8:39 AM, '2+ <ele...@gm...> wrote: > hi! > > i installed jaunty to my mini9 > so i followed the instruction > most went well but in the end resulted into: > > E: Couldn't find the package python-sndobj > > On Wed, Apr 01, 2009 at 01:59:07AM -0400, Daniel Skinner wrote: > > Hi all, > > > > I just finished setting up a rudimentary repo for the upcoming Ubuntu (22 > > days n all) Jaunty. Its actually hosted from from the sourceforge site > and > > has a public key for the repo to make it all nice and tidy. > > > > If your using Jaunty, you can add the following to your > > /etc/apt/sources.list > > > > # SndObj Library > > deb http://sndobj.sourceforge.net/ubuntu jaunty unstable > > > > you can download the following key and add it to apt-key > > $> wget http://sndobj.sourceforge.net/ubuntu/pubkey.asc > > $> sudo apt-key add pubkey.asc > > > > now you can update and install > > > > $> sudo aptitude update > > $> sudo aptitude install python-sndobj > > > > This was a cvs checkout built from today. Once I get builds for the 2.6.6 > > release together, intrepid/jaunty, 32/64bit, ill look into posting > relevant > > instructions on the homepage. > > -- > '2+ > podcasting muzikinda thang > http://sarigama.namaste.jp/podcast/rss.xml > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > _______________________________________________ > Sndobj-devel mailing list > Snd...@li... > https://lists.sourceforge.net/lists/listinfo/sndobj-devel > |
From: '2+ <ele...@gm...> - 2009-04-12 12:39:31
|
hi! i installed jaunty to my mini9 so i followed the instruction most went well but in the end resulted into: E: Couldn't find the package python-sndobj On Wed, Apr 01, 2009 at 01:59:07AM -0400, Daniel Skinner wrote: > Hi all, > > I just finished setting up a rudimentary repo for the upcoming Ubuntu (22 > days n all) Jaunty. Its actually hosted from from the sourceforge site and > has a public key for the repo to make it all nice and tidy. > > If your using Jaunty, you can add the following to your > /etc/apt/sources.list > > # SndObj Library > deb http://sndobj.sourceforge.net/ubuntu jaunty unstable > > you can download the following key and add it to apt-key > $> wget http://sndobj.sourceforge.net/ubuntu/pubkey.asc > $> sudo apt-key add pubkey.asc > > now you can update and install > > $> sudo aptitude update > $> sudo aptitude install python-sndobj > > This was a cvs checkout built from today. Once I get builds for the 2.6.6 > release together, intrepid/jaunty, 32/64bit, ill look into posting relevant > instructions on the homepage. -- '2+ podcasting muzikinda thang http://sarigama.namaste.jp/podcast/rss.xml |