csound / manual

Csound Reference Manual (English)
Other
46 stars 29 forks source link

pv_export needs example #637

Open tjingboem opened 2 years ago

AsterixMusic commented 2 years ago

Very simple example but it works. You have to run Csound twice, the first time creates fox.pvx, the second time exports cstest_file


<CsoundSynthesizer>
<CsOptions>
; By Stefano Cucchi 2022

-U pv_export fox.pvx cstext_file ; the 2' time export text file

</CsOptions>
<CsInstruments>

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

; analyze sound file and output result to pvoc-ex files
ires1 system_i 1,{{ pvanal fox.wav fox.pvx }}          ; default settings

</CsInstruments>
<CsScore>

e 
</CsScore>
</CsoundSynthesizer>