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 » Supercollider
Latoocarfian on both channels
Post new topic   Reply to topic Moderators: v-un-v
Page 1 of 1 [9 Posts]
View unread posts
View new posts in the last week
Mark the topic unread :: View previous topic :: View next topic
Author Message
alistair



Joined: Oct 01, 2007
Posts: 7
Location: Germany

PostPosted: Sun Oct 07, 2007 2:49 pm    Post subject: Latoocarfian on both channels
Subject description: left channel sounds way too strong
Reply with quote  Mark this post and the followings unread

Hallo,
I have a really elementary question, I've been varying the Latoocarfian patch but on getting it to work on both channels...:

(
{ [ LatoocarfianL.ar(
SampleRate.ir/3,
LFNoise2.kr(10,1,1.5),
LFNoise2.kr(3,0.5,1.5),
LFNoise2.kr(7,1.5,1.5),
LFNoise2.kr(3,1.5,1.5)
), LatoocarfianL.ar(
SampleRate.ir/2,
LFNoise2.kr(10,1,1.5),
LFNoise2.kr(3,0.5,1.5),
LFNoise2.kr(7,1.5,1.5),
LFNoise2.kr(3,1.5,1.5)
) * 0.2 ]
}.play;
)


... ends up sounding like 2 independent Latoocarfians, only the left channel sounds very strong, and the level on the right channel is way too soft. Does anybody have any solutions as to how I can get both channels to play at the same level?

cheers in advance!!
Back to top
View user's profile Send private message
dewdrop_world



Joined: Aug 28, 2006
Posts: 858
Location: Guangzhou, China
Audio files: 4

PostPosted: Mon Oct 08, 2007 12:14 pm    Post subject: Reply with quote  Mark this post and the followings unread

You've transposed the array end and the multiplication.

You have [a, b*0.2] so if a and b have the same initial level, then yes, the right channel will be softer.

I think you meant [a, b] * 0.2?

James

_________________
ddw online: http://www.dewdrop-world.net
sc3 online: http://supercollider.sourceforge.net
Back to top
View user's profile Send private message Visit poster's website AIM Address
alistair



Joined: Oct 01, 2007
Posts: 7
Location: Germany

PostPosted: Mon Oct 08, 2007 1:43 pm    Post subject: Reply with quote  Mark this post and the followings unread

cheers thanks a lot d_w james, I'll give that one a try, & tell you how I get on Wink
Back to top
View user's profile Send private message
alistair



Joined: Oct 01, 2007
Posts: 7
Location: Germany

PostPosted: Mon Oct 08, 2007 4:53 pm    Post subject: Reply with quote  Mark this post and the followings unread

thanks a lot, it was the exact answer: equal sound coming from both speakers! Smile


now, the thing that worries me is that the answer appeared fairy simple Rolling Eyes ... and I just didn't get it ! Maybe this is just how it always is Confused
Back to top
View user's profile Send private message
blue hell
Site Admin


Joined: Apr 03, 2004
Posts: 24422
Location: The Netherlands, Enschede
Audio files: 297
G2 patch files: 320

PostPosted: Tue Oct 09, 2007 12:31 pm    Post subject: Reply with quote  Mark this post and the followings unread

alistair wrote:
... and I just didn't get it ! Maybe this is just how it always is :?


When you indent your code it will be easier to see, like in

Code:

(
  {
    [
      LatoocarfianL.ar
      (
        SampleRate.ir/3,
        LFNoise2.kr(10,1,1.5),
        LFNoise2.kr(3,0.5,1.5),
        LFNoise2.kr(7,1.5,1.5),
        LFNoise2.kr(3,1.5,1.5)
      ),
      LatoocarfianL.ar
      (
        SampleRate.ir/2,
        LFNoise2.kr(10,1,1.5),
        LFNoise2.kr(3,0.5,1.5),
        LFNoise2.kr(7,1.5,1.5),
        LFNoise2.kr(3,1.5,1.5)
      ) * 0.2
    ]
  }.play;
)

_________________
Jan
also .. could someone please turn down the thermostat a bit.
Posted Image, might have been reduced in size. Click Image to view fullscreen.
Back to top
View user's profile Send private message Visit poster's website
Kassen
Janitor
Janitor


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

PostPosted: Tue Oct 09, 2007 3:36 pm    Post subject: Reply with quote  Mark this post and the followings unread

Blue Hell wrote:

When you indent your code it will be easier to see, like in


It might've been indented. I think the board will eat spaces and tabs at the start of lines if you don't use the "code" tag. This gets annoying so in case of doubt use the tag.

_________________
Kassen
Back to top
View user's profile Send private message Send e-mail Visit poster's website
blue hell
Site Admin


Joined: Apr 03, 2004
Posts: 24422
Location: The Netherlands, Enschede
Audio files: 297
G2 patch files: 320

PostPosted: Tue Oct 09, 2007 5:20 pm    Post subject: Reply with quote  Mark this post and the followings unread

Kassen wrote:
It might've been indented.


That's true, if so I'm sorry for stating the obvious.

_________________
Jan
also .. could someone please turn down the thermostat a bit.
Posted Image, might have been reduced in size. Click Image to view fullscreen.
Back to top
View user's profile Send private message Visit poster's website
alistair



Joined: Oct 01, 2007
Posts: 7
Location: Germany

PostPosted: Fri Oct 19, 2007 9:13 am    Post subject: Reply with quote  Mark this post and the followings unread

Blue Hell wrote:
Kassen wrote:
It might've been indented.


That's true, if so I'm sorry for stating the obvious.


No, for me, you're not stating the blindingly obvious, thanks to BH's advice I started indenting.... which certainly makes things easier.

Thanks BH ! Smile
Back to top
View user's profile Send private message
blue hell
Site Admin


Joined: Apr 03, 2004
Posts: 24422
Location: The Netherlands, Enschede
Audio files: 297
G2 patch files: 320

PostPosted: Fri Oct 19, 2007 9:51 am    Post subject: Reply with quote  Mark this post and the followings unread

alistair wrote:
Thanks BH ! Smile


You're welcome Very Happy

_________________
Jan
also .. could someone please turn down the thermostat a bit.
Posted Image, might have been reduced in size. Click Image to view fullscreen.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic Moderators: v-un-v
Page 1 of 1 [9 Posts]
View unread posts
View new posts in the last week
Mark the topic unread :: View previous topic :: View next topic
 Forum index » DIY Hardware and Software » Supercollider
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