Csound Csound-dev Csound-tekno Search About

[Csnd] Generate audio file with N samples exactly?

Date2012-06-23 15:44
FromRalph Bluecoat
Subject[Csnd] Generate audio file with N samples exactly?
Hello again,

I'm currently playing around with some low-level algorithms whose notes and durations are based on sample rate and control rate. Is there a way in Csound that I could write to an audio file and specify amount of samples I want to write to disk?

Thanks,

Paul

Date2012-06-23 18:06
FromTito Latini
SubjectRe: [Csnd] Generate audio file with N samples exactly?
AttachmentsNone  

Date2012-06-23 18:24
FromRalph Bluecoat
SubjectRe: [Csnd] Generate audio file with N samples exactly?
Thanks! That should do the trick, though I may have to play around with the control rate. I never realized the resolution of the score was based on ksmps. This might explain the deviations I was getting when I was trying to get the period lengths of waveforms in samples in an audio editor. 

You may have guessed that I've been playing around with your Csound implementation of the one-line 8-bit patterns in C. It's been good fun trying to break down those equations and figure out how they work!

-P

On Sat, Jun 23, 2012 at 1:06 PM, Tito Latini <tito.01beta@gmail.com> wrote:
Here is the trick (but only ksmps=1)

<CsoundSynthesizer>
<CsInstruments>

sr     = 44100
ksmps  = 1
nchnls = 1
0dbfs  = 1

instr 1
aout rand 0.5
out  aout
endin

</CsInstruments>
<CsScore>
t0 [44100*60]
i1 0 12345       ; duration is 12345 samples
e
</CsScore>
</CsoundSynthesizer>


csound -d test.csd
...

sndfile-info $SFDIR/test.wav |grep ^Frames
Frames      : 12345

The grid for the score time is ksmps. The result of the previous
example with ksmps=64 is 12352 because

 64 * 192 = 12288 < 12345
 64 * 193 = 12352 = 12345 + 7

therefore the maximum error is (ksmps - 1) samples.

tito

On Sat, Jun 23, 2012 at 10:44:14AM -0400, Ralph Bluecoat wrote:
> Hello again,
>
> I'm currently playing around with some low-level algorithms whose notes and
> durations are based on sample rate and control rate. Is there a way in
> Csound that I could write to an audio file and specify amount of samples I
> want to write to disk?
>
> Thanks,
>
> Paul


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"



Date2012-06-23 21:08
FromTito Latini
SubjectRe: [Csnd] Generate audio file with N samples exactly?
AttachmentsNone