Search found 59476 matches
- Wed Aug 18, 2010 12:19 pm
- Forum: General Audio Programming
- Topic: How to compute SPL from sound inputed from a microphone.
- Replies: 42
- Views: 50694
Re: How to compute SPL from sound inputed from a microphone.
Congratulations :) I think that it would be worth shifting this topic to the Nyquist board - OK with you or would you prefer to leave it here for now? The two topics could possibly be merged, though I'm not sure if the design goals of the plug-ins are quite the same, so it may be better to keep them...
- Wed Aug 18, 2010 11:55 am
- Forum: New Plug-Ins
- Topic: "Wave Stats" plug-in
- Replies: 69
- Views: 55892
Re: "Wave Stats" plug-in
Thanks endolith. Testing both your version and this one, the results are pretty good. Checking sine waves against the on-line calculator on this page http://www.diracdelta.co.uk/science/source/a/w/aweighting/source.html In the mid-range the A-weighted values match extremely closely (within 0.1 dB) A...
- Wed Aug 18, 2010 4:49 am
- Forum: Windows
- Topic: No 'Export as MP3' button in Audacity 1.3.12-beta (Unicode)
- Replies: 11
- Views: 2672
Re: No 'Export as MP3' button in Audacity 1.3.12-beta (Unico
... at times I get an error saying that these types of files usually have an mp3 extension and asking me if I really want to export as is (without the mp3 extension) That will happen if the file name includes a dot. For example if you have a file name "badaz-boogie feat. MC Jabber" then A...
- Wed Aug 18, 2010 4:17 am
- Forum: Windows
- Topic: export wav files
- Replies: 8
- Views: 782
Re: export wav files
Edit menu > Preferences > Quality
Set the default sample rate to 44100
Set the default sample rate to 44100
- Wed Aug 18, 2010 3:37 am
- Forum: Nyquist
- Topic: Mix multi-channel track to mono
- Replies: 1
- Views: 3262
Re: Mix multi-channel track to mono
Or a more "exotic" way of doing the same thing: (defun mix (s-in) (if (arrayp s-in) (let ((c 0)(n (/ 1.0(length s-in)))) (multichan-expand #'(lambda (x) (if (= c 0)(setq c 1)(setf (aref s-in 0)(sum(aref s-in 0)x)))) s-in) (scale n (aref s-in 0))) s-in)) (mix s) An interesting thing (that a...
- Wed Aug 18, 2010 1:50 am
- Forum: Windows
- Topic: Amplify settings (2) are always locked together
- Replies: 28
- Views: 4862
Re: Amplify settings (2) are always locked together
I am not using wav files at all. Just .aup and .flac . In case it's not been mentioned before in this long topic, FLAC supports ReplayGain http://wiki.hydrogenaudio.org/index.php?title=Replay_Gain On another issue, I really would like to know why ... I've no idea about that one, but I think Gale re...
- Wed Aug 18, 2010 1:43 am
- Forum: Nyquist
- Topic: New Plug-In: big G
- Replies: 1
- Views: 1035
Re: New Plug-In: big G
Hopefully some constructive comments - There's a couple of "unusual features" that you may not have noticed: The "echo" setting is in seconds, but is marked in milliseconds. There is no echo unless the echo volume is set greater than 100%. It would probably be more accurate to de...
- Wed Aug 18, 2010 1:05 am
- Forum: Audio Processing
- Topic: ClickRepair compression
- Replies: 15
- Views: 2267
Re: ClickRepair compression
Glad you got the problem sorted out, and thanks for letting us know the outcome.
- Tue Aug 17, 2010 11:42 pm
- Forum: General Audio Programming
- Topic: Measuring Hz and dB of a song
- Replies: 1
- Views: 5720
Re: Measuring Hz and dB of a song
You can get frequency data from the "Plot Spectrum" tool in the "Analyze" menu. This tool has been significantly improved in the 1.3.12 version of Audacity. Also, I've just posted an amplitude analysis plug-in here that may be useful: http://forum.audacityteam.org/viewtopic.php?f...
- Tue Aug 17, 2010 11:39 pm
- Forum: General Audio Programming
- Topic: How to compute SPL from sound inputed from a microphone.
- Replies: 42
- Views: 50694
Re: How to compute SPL from sound inputed from a microphone.
@ endolith - I've posted a plug-in based on the information in this thread here: http://forum.audacityteam.org/viewtopic ... 454#p99454