I tried to change the beatfinderscript to a beatkiller, but im not able.

4 messages Options
Embed this post
Permalink
A F

I tried to change the beatfinderscript to a beatkiller, but im not able.

Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
I tried to change the beatfinderscript to a beatkiller, but im not able.

;nyquist plug-in
;version 1
;type process
;categories "http://audacityteam.org/namespace#OnsetDetector"
;name "Angels Beat Fucker..."
;action "Fucking beats..."
;info "Mi eiget scheiss zum experimentiere!!!!!!!!!"

;control thresval "Threshold Percentage" int "" 65 5 100
(setf s1 (if (arrayp s) (snd-add (aref s 0) (aref s 1)) s))
(defun signal () (force-srate 1000 (lp (snd-follow (lp s1 50) 0.001 0.01 0.1 512) 10)))
(setq max (peak (signal) NY:ALL))
(setq thres (* (/ thresval 100.0) max))
(setq s2 (signal))
(do ((c 0.0) (l NIL) (p T) (v (snd-fetch s2))) ((not v) l)
 (if (and p (> v thres)) (setq l (cons (list c "B") l)))  <-Here it makes the label, in center of the beat, but i want to kill the beat, how to make this?????
 (setq p (< v thres))
 (setq c (+ c 0.001))
 (setq v (snd-fetch s2)))

; arch-tag: 2204686b-2dcc-4891-964a-2749ac30661b


Messenger und Hotmail mobil benutzen! Weitere Infos zu Windows Live mobil
------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Audacity-nyquist mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/audacity-nyquist
edgar-rft

Re: I tried to change the beatfinderscript to a beatkiller, but im not able.

Reply Threaded More More options
Print post
Permalink
 > I tried to change the beatfinderscript to a beatkiller...

What please do you exactly mean with "beatkiller"? Do jou want to
remove the beat from the audio track by audio sample manipuation?

The "beatfinder" only operates on label lists but does not change
audio samples, so in case that you want to manipulate audio samples
the "beatfinder" could only be used as the "analysis" part.

Please excuse but I do not understand what you mean exactly.

- edgar

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Audacity-nyquist mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/audacity-nyquist
edgar-rft

Where is David R. Sky?

Reply Threaded More More options
Print post
Permalink
Hello Audacity Nyquist list,

Please excuse, this message has only semi-directly to do with
Nyquist or Audacity development, but I did a very sad discovery:

I'm not 100% sure and I do not want to spread rumours here but
everything looks as if David R. Sky has died at October 4th.

* David's homepage is down
* mails to all his email accounts return undelivered

And I found a obituary in the archives of some Vancouver
newspapers:

http://www.legacy.com/CAN-Vancouver/Obituaries.asp?page=lifestory&personid=134125771

Does anybody know more about this?

I hope that I'm wrong but also afraid that I'm not...

- edgar

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Audacity-nyquist mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/audacity-nyquist
A F

Re: I tried to change the beatfinderscript to a beatkiller, but im not able.

Reply Threaded More More options
Print post
Permalink
In reply to this post by edgar-rft
Some javascript/style in this post has been disabled (why?)
Hello edgar

Listen, im programming opengl / glut in c++, but i have no idea of sound, so maybe i missed a allready existing plugin or functionality to automatically find and delete beats.
The beatfinder does a nice job, and as you can see i changed him to a process, in hope to find a way in nyquist, to make him deleting the beat instead of marking it with a label.
I hope, this helps a bit to understand: In 3D grafic i have an array and i can loop filter and delete everything in every position i want, how does this work with nyquist, i didn't find usefull tutorials or api examples.
Im programming nyquist with the texteditor, so if you know a way, please finish the code for me and load it up for everyone

-Angel 


;nyquist plug-in
;version 1
;type process
;categories "http://audacityteam.org/namespace#OnsetDetector"
;name "Angels Beat Fucker..."
;action "Fucking beats..."
;info "Mi eiget scheiss zum experimentiere!!!!!!!!!"

;control thresval "Threshold Percentage" int "" 65 5 100
(setf s1 (if (arrayp s) (snd-add (aref s 0) (aref s 1)) s))
(defun signal () (force-srate 1000 (lp (snd-follow (lp s1 50) 0.001 0.01 0.1 512) 10)))
(setq max (peak (signal) NY:ALL))
(setq thres (* (/ thresval 100.0) max))
(setq s2 (signal))
(do ((c 0.0) (l NIL) (p T) (v (snd-fetch s2))) ((not v) l)
 (if (and p (> v thres)) (setq l (cons (list c "B") l)))  <-Here it makes the label, in center of the beat, but i want to kill the beat, how to make this?????
 (setq p (< v thres))
 (setq c (+ c 0.001))
 (setq v (snd-fetch s2)))

; arch-tag: 2204686b-2dcc-4891-964a-2749ac30661b
 



 

> > I tried to change the beatfinderscript to a beatkiller...
>
> What please do you exactly mean with "beatkiller"? Do jou want to
> remove the beat from the audio track by audio sample manipuation?
>
> The "beatfinder" only operates on label lists but does not change
> audio samples, so in case that you want to manipulate audio samples
> the "beatfinder" could only be used as the "analysis" part.
>
> Please excuse but I do not understand what you mean exactly.
>
> - edgar



Aus Fotos und Videos super einfach mit der Auto-Film Funktion schöne Filme herstellen: Jetzt runterladen und ausprobieren!
------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Audacity-nyquist mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/audacity-nyquist