Csound Csound-dev Csound-tekno Search About

[Csnd] Arrays of ftables

Date2013-01-28 13:55
FromMartin Huenniger
Subject[Csnd] Arrays of ftables
Hi list,

How can I solve the following problem: I have a list of files and I want to play them by Instruments. Until now I did it like this:

instr 1
	asig diskin2 p4, 1, 0, 1
	outs asig, asig
endin

and use 
i1 0 -1 "file.aiff"
to start the instrument

Since diskin2 needs some time to start on certain hardware, it might be useful to store the file in a ftable
to have time for the allocation of the memory and use the flooper opcode to play the ftable. Since the names of the files are not known at the time the csd-file is written, and I want to avoid the generation of the csd by the program I call the Csound process from, I thought it might be convenient to have some mechanism that generates ftables during runtime. Like tis

instr 2
	gisample_ ftgen 0, 0, 0, 1, p4, 0, 0, 0
endin
 
Then I'd like to do

i 2 0 0 "file.aiff"  ; use  as parameter to control into which ftample i write 

thus creating the ftable and give it as an argument to flooper in some other instrument.

The problem is that there seem to be no "arrays of global variables", such that gisample_ or gisample[number] seems to expressable. Is there a way to achieve this functionality? Maybe with Macros? 

Best,
Martin

_________________________
Martin Hünniger
a_s_tarantoga@yahoo.de
a-s-tarantoga.tumblr.com
soundcloud.com/a_s_tarantoga






Date2013-01-28 14:11
FromVictor Lazzarini
SubjectRe: [Csnd] Arrays of ftables
Try this

ifn  ftgen 1,0,64,7,0,64,0  ; create a table with zeros

instr 2

itab ftgen 0, 0, 0, 1, p4, 0, 0, 0   ; load table with sfile
tabw_i  itab, p5, 1                        ; save number in ftable 1

endin

then use

itab tab_i  inum, 1

to get the number of the table you want to read

Regards

Victor


On 28 Jan 2013, at 13:55, Martin Huenniger wrote:

> Hi list,
> 
> How can I solve the following problem: I have a list of files and I want to play them by Instruments. Until now I did it like this:
> 
> instr 1
> 	asig diskin2 p4, 1, 0, 1
> 	outs asig, asig
> endin
> 
> and use 
> i1 0 -1 "file.aiff"
> to start the instrument
> 
> Since diskin2 needs some time to start on certain hardware, it might be useful to store the file in a ftable
> to have time for the allocation of the memory and use the flooper opcode to play the ftable. Since the names of the files are not known at the time the csd-file is written, and I want to avoid the generation of the csd by the program I call the Csound process from, I thought it might be convenient to have some mechanism that generates ftables during runtime. Like tis
> 
> instr 2
> 	gisample_ ftgen 0, 0, 0, 1, p4, 0, 0, 0
> endin
> 
> Then I'd like to do
> 
> i 2 0 0 "file.aiff"  ; use  as parameter to control into which ftample i write 
> 
> thus creating the ftable and give it as an argument to flooper in some other instrument.
> 
> The problem is that there seem to be no "arrays of global variables", such that gisample_ or gisample[number] seems to expressable. Is there a way to achieve this functionality? Maybe with Macros? 
> 
> Best,
> Martin
> 
> _________________________
> Martin Hünniger
> a_s_tarantoga@yahoo.de
> a-s-tarantoga.tumblr.com
> soundcloud.com/a_s_tarantoga
> 
> 
> 
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie





Date2013-01-28 14:15
FromMartin Huenniger
SubjectRe: [Csnd] Arrays of ftables
Hi Victor,

cool. That's what I was looking for. Thank you very much!

Best,
Martin

Am 28.01.2013 um 15:11 schrieb Victor Lazzarini:

> Try this
> 
> ifn  ftgen 1,0,64,7,0,64,0  ; create a table with zeros
> 
> instr 2
> 
> itab ftgen 0, 0, 0, 1, p4, 0, 0, 0   ; load table with sfile
> tabw_i  itab, p5, 1                        ; save number in ftable 1
> 
> endin
> 
> then use
> 
> itab tab_i  inum, 1
> 
> to get the number of the table you want to read
> 
> Regards
> 
> Victor
> 
> 
> On 28 Jan 2013, at 13:55, Martin Huenniger wrote:
> 
>> Hi list,
>> 
>> How can I solve the following problem: I have a list of files and I want to play them by Instruments. Until now I did it like this:
>> 
>> instr 1
>> 	asig diskin2 p4, 1, 0, 1
>> 	outs asig, asig
>> endin
>> 
>> and use 
>> i1 0 -1 "file.aiff"
>> to start the instrument
>> 
>> Since diskin2 needs some time to start on certain hardware, it might be useful to store the file in a ftable
>> to have time for the allocation of the memory and use the flooper opcode to play the ftable. Since the names of the files are not known at the time the csd-file is written, and I want to avoid the generation of the csd by the program I call the Csound process from, I thought it might be convenient to have some mechanism that generates ftables during runtime. Like tis
>> 
>> instr 2
>> 	gisample_ ftgen 0, 0, 0, 1, p4, 0, 0, 0
>> endin
>> 
>> Then I'd like to do
>> 
>> i 2 0 0 "file.aiff"  ; use  as parameter to control into which ftample i write 
>> 
>> thus creating the ftable and give it as an argument to flooper in some other instrument.
>> 
>> The problem is that there seem to be no "arrays of global variables", such that gisample_ or gisample[number] seems to expressable. Is there a way to achieve this functionality? Maybe with Macros? 
>> 
>> Best,
>> Martin
>> 
>> _________________________
>> Martin Hünniger
>> a_s_tarantoga@yahoo.de
>> a-s-tarantoga.tumblr.com
>> soundcloud.com/a_s_tarantoga
>> 
>> 
>> 
>> 
>> 
>> 
>> Send bugs reports to the Sourceforge bug tracker
>>           https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>> 
> 
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
> 
> 
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 

_________________________
Martin Hünniger
a_s_tarantoga@yahoo.de
a-s-tarantoga.tumblr.com
soundcloud.com/a_s_tarantoga






Date2013-01-28 14:16
FromVictor Lazzarini
SubjectRe: [Csnd] Arrays of ftables
Also if you are using the new parser you can do

instr 2

itab ftgen ....
tsample[p5] = itab

endin
On 28 Jan 2013, at 13:55, Martin Huenniger wrote:

> Hi list,
> 
> How can I solve the following problem: I have a list of files and I want to play them by Instruments. Until now I did it like this:
> 
> instr 1
> 	asig diskin2 p4, 1, 0, 1
> 	outs asig, asig
> endin
> 
> and use 
> i1 0 -1 "file.aiff"
> to start the instrument
> 
> Since diskin2 needs some time to start on certain hardware, it might be useful to store the file in a ftable
> to have time for the allocation of the memory and use the flooper opcode to play the ftable. Since the names of the files are not known at the time the csd-file is written, and I want to avoid the generation of the csd by the program I call the Csound process from, I thought it might be convenient to have some mechanism that generates ftables during runtime. Like tis
> 
> instr 2
> 	gisample_ ftgen 0, 0, 0, 1, p4, 0, 0, 0
> endin
> 
> Then I'd like to do
> 
> i 2 0 0 "file.aiff"  ; use  as parameter to control into which ftample i write 
> 
> thus creating the ftable and give it as an argument to flooper in some other instrument.
> 
> The problem is that there seem to be no "arrays of global variables", such that gisample_ or gisample[number] seems to expressable. Is there a way to achieve this functionality? Maybe with Macros? 
> 
> Best,
> Martin
> 
> _________________________
> Martin Hünniger
> a_s_tarantoga@yahoo.de
> a-s-tarantoga.tumblr.com
> soundcloud.com/a_s_tarantoga
> 
> 
> 
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie