[Csnd] trimming silence from the beginning of a file
Date | 2011-11-15 20:35 |
From | Dennis Raddle |
Subject | [Csnd] trimming silence from the beginning of a file |
Can someone tell me how to write a csd that trims the silence from the beginning of a wav file and writes the new wav file? Dennis |
Date | 2011-11-15 21:12 |
From | Adam Puckett |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
Set ksmps to 1 and look for a-values > 0. On 11/15/11, Dennis Raddle |
Date | 2011-11-15 23:59 |
From | Dennis Raddle |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
I know that much, but how to actually do the trimming? How do produce the output file? It would require something like an instrument that doesn't start sending output until it reaches a non-zero sample.
On Tue, Nov 15, 2011 at 1:12 PM, Adam Puckett <adotsdothmusic@gmail.com> wrote: Set ksmps to 1 and look for a-values > 0. |
Date | 2011-11-16 00:09 |
From | Rory Walsh |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
In one instrument read the soundfile and watch out for the first couple of non-zeros. When they come in trigger another instrument using "fout" and "monitor". This will record the output from the soundfile, but only after the silence at the start. It's hack and you'd have to watch for a load of 0s at the end too. I'm sure there are better ways. I'm just too tired now to think about them! On 15 November 2011 23:59, Dennis Raddle |
Date | 2011-11-16 00:11 |
From | peiman khosravi |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
That sounds about write. Although you'd then probably want to have 1 or 2 samples delay to that you leave one zero sample in there to avoid any chances of clicks. Maybe have an instrument that writes its output with fout? But normally I'd do this kind of things with SoX. Or these days with samplemanager (not free but very cheap for what it is). P On 15 November 2011 23:59, Dennis Raddle |
Date | 2011-11-16 00:18 |
From | peiman khosravi |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
Just looking at SoX manual: "silence [-l] above-periods [duration threshold[d|%] [below-periods duration threshold[d|%]] Removes silence from the beginning, middle, or end of the audio. 'Silence' is determined by a specified threshold." Much easier than making a Csound instrument I'd say! P On 16 November 2011 00:11, peiman khosravi |
Date | 2011-11-16 00:54 |
From | Michael Gogins |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
You can script sox to do this stuff, and you can run sox from inside Csound. This is how I do my post-processing inside Csound. Hope this helps, Mike On Tue, Nov 15, 2011 at 7:09 PM, Rory Walsh |
Date | 2011-11-16 05:37 |
From | Jeffrey Trevino |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
Hi Mike, I need to do this, too - do you have some basic sample code handy to post? I've never seen an example of how to script sox from within Csound. thanks for the advice,
Jeff
On Tue, Nov 15, 2011 at 4:54 PM, Michael Gogins <michael.gogins@gmail.com> wrote: You can script sox to do this stuff, and you can run sox from inside 《〠》】〶【〖〠〗〶〛〷〚 Jeff Treviño PhD Candidate in Music Composition @ the University of California, San Diego 〖〠〗〶〛〷〚《〠》】〶 Skype: jeffreytrevino E-mail: jeffrey.trevino@gmail.com 〚《〠》】〶【〖〠〗〶〛〷 9310H Redwood Dr. La Jolla, CA 92037 USA 〖〠〗〶〛〷〚《〠》】〶【 |
Date | 2011-11-16 08:51 |
From | peiman khosravi |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
Use the system opcode. P On 16 November 2011 05:37, Jeffrey Trevino |
Date | 2011-11-16 14:18 |
From | Tito Latini |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
Attachments | None |
Date | 2011-11-16 20:14 |
From | Tito Latini |
Subject | Re: [Csnd] trimming silence from the beginning of a file |
Attachments | None |