Search found 10 matches

by silencesound
Tue Dec 04, 2012 3:27 pm
Forum: New Plug-Ins
Topic: Adding background noise oder background muisc
Replies: 11
Views: 10251

Re: Adding background noise oder background muisc

An easy way would be to take the code from SilenceFinder.ny oder SoundFinder.ny an apply in the silent parts more background noise then in the sound parts.

controls:
noise mix (sound)
noise mix (silent)
level for silence
by silencesound
Tue Dec 04, 2012 2:15 pm
Forum: New Plug-Ins
Topic: Adding background noise oder background muisc
Replies: 11
Views: 10251

Re: Adding background noise oder background muisc

1. I found an effect in AddNoise: The resulting volume is a mixture from the original sound and the background sound. That means if you start with the parameter set to 20 the resulting original sound is only about 80% of the original volume. Is that indented? Is there a workaround? 2. Is there an ea...
by silencesound
Tue Dec 04, 2012 12:10 pm
Forum: Audio Processing
Topic: strange behavior of seq
Replies: 5
Views: 1252

Re: strange behavior of seq

My multichannel version is getting errors, whatever I try: (setf s1 s) (setf s2 s) (seq (multichan-expand #'extract-abs 9 10 (cue s1)) (multichan-expand #'extract-abs 0 1 (cue s2)) ; (multichan-expand #'s-rest 0) (s-rest 0) ) And why Nyqust doesn't take "The logical stop time" of the last element fo...
by silencesound
Tue Dec 04, 2012 7:11 am
Forum: Audio Processing
Topic: strange behavior of seq
Replies: 5
Views: 1252

Re: strange behavior of seq

I've changed your last code to

Code: Select all

(setf s1 s)
(setf s2 s)
(seq
  (extract-abs 9 10 (cue s1))
  (extract-abs 0 1 (cue s2)))
Can you explain me, why the s2 part of the result is 9 seconds in the result?
by silencesound
Mon Dec 03, 2012 12:57 pm
Forum: Audio Processing
Topic: strange behavior of seq
Replies: 5
Views: 1252

strange behavior of seq

I took a sound of 2 min and made a fade in over 2 min for a better visual recognition. Then i applied some code to test the seq command. (Please comment in or out the different seq lines) (setf s090 (multichan-expand #'extract-abs 0 90 s)) (setf s90pl (multichan-expand #'extract-abs 90 (get-duration...
by silencesound
Mon Dec 03, 2012 8:37 am
Forum: New Plug-Ins
Topic: Adding background noise oder background muisc
Replies: 11
Views: 10251

Re: Adding background noise oder background muisc

Many thanks for the code.
A first try of a plugin is attached.

AutoDuck would be great, but can I use it form within a Nyquist plugin?
by silencesound
Sat Dec 01, 2012 8:26 pm
Forum: New Plug-Ins
Topic: Adding background noise oder background muisc
Replies: 11
Views: 10251

Adding background noise oder background muisc

I know how I can to that (see subject) manually. Unfortunately I have to process a lot of mp3 files. Am I right, that Audacitys batch mode won't help me without a plug in? How can I add for example a brown noise to a track by using Nyquist? Can I use within Nyqusit another track with music to add th...
by silencesound
Sat Dec 01, 2012 7:14 am
Forum: Audio Processing
Topic: lengthen silences
Replies: 29
Views: 12823

Re: lengthen silences

Here is a stereo expansion of SilenceLength.ny My anyone have a look or try it , whether there are any bugs? Is that the hack that I wrote? I notice that it always inserts silence at the beginning, so that is probably a bug. Yes, It's from your post here at Jan 12, 2010. Does it really make silence...
by silencesound
Fri Nov 30, 2012 11:30 am
Forum: Audio Processing
Topic: lengthen silences
Replies: 29
Views: 12823

Re: lengthen silences

Here is a stereo expansion of SilenceLength.ny My anyone have a look or try it , whether there are any bugs? ;nyquist plug-in ;version 1 ;type process ;categories "http://lv2plug.in/ns/lv2core#AnalyserPlugin" ;name "Silence Lengthen 2" ;action "Inserting silence..." ;info "Based on Silence Finder by...
by silencesound
Thu Nov 29, 2012 6:25 pm
Forum: Audio Processing
Topic: lengthen silences
Replies: 29
Views: 12823

Re: lengthen silences

Is there any further developed version of silencelength.ny?

Is there another similar plug-in?

Truncate Silence would do it, but unfortunately it end at 1:1, so I can't do an decompression.

Any other tips?