Or you could download the audacity-data package from here and install it manually.bgravato wrote:you can add ubuntu's repositories on the puppy package manager. Doing so will show an audacity-data-1.3.12 package available.
Search found 59476 matches
- Thu Apr 14, 2011 3:43 pm
- Forum: GNU/Linux and Unix-like
- Topic: What happened to the click track
- Replies: 12
- Views: 4463
Re: What happened to the click track
I don't know what else is included in the
- Thu Apr 14, 2011 3:35 pm
- Forum: Mac OS X
- Topic: Exporting Multiple Tracks Together
- Replies: 5
- Views: 4607
Re: Exporting Multiple Tracks Together
By default labels and audio tracks are not locked together, however in the new 1.3.13 version of Audacity there is a "Sync-Lock" function: http://manual.audacityteam.org/man/Sync-Locked_Tracks
- Thu Apr 14, 2011 7:08 am
- Forum: Nyquist
- Topic: Vibrato Nyquist script
- Replies: 18
- Views: 9149
Re: Vibrato Nyquist script
I suppose I just put that together with the header comments that apparently tell Audacity what the plugin is, and then it's all set? To use the code, making a full plug-in is optional. The code will run as is in the "Nyquist Prompt" http://manual.audacityteam.org/man/Nyquist_Prompt ideall...
- Thu Apr 14, 2011 6:56 am
- Forum: GNU/Linux and Unix-like
- Topic: MAudio 1010lt records only 7-50 seconds
- Replies: 16
- Views: 3734
Re: MAudio 1010lt records only 7-50 seconds
I've not got a multi-channel sound card to test on, but I believe that it has been designed to do so, and also allow you to map any input to any output (with "Jack Control") http://jackaudio.org/ (I do use Jack with a 2 channel sound card and it can certainly handle multiple ins and outs f...
- Wed Apr 13, 2011 11:29 pm
- Forum: Mac OS X
- Topic: Audacity for Macs and silence Generator
- Replies: 19
- Views: 7209
Re: Audacity for Macs and silence Generator
There's not really any difference between the silence Generator in Audacity 1.2 and 1.3. In both, you just;
Click where you want to insert the silence,
then select "Generate > Silence",
set the length of silence that you want
and click the "OK" button.
Click where you want to insert the silence,
then select "Generate > Silence",
set the length of silence that you want
and click the "OK" button.
- Wed Apr 13, 2011 10:06 pm
- Forum: Mac OS X
- Topic: Exporting Multiple Tracks Together
- Replies: 5
- Views: 4607
Re: Exporting Multiple Tracks Together
The problem is that Export Multiple only uses the first label track. Create a new label track at the bottom Then transfer all of your labels into that track Then delete the old label tracks. Export Multiple should then work as expected. When you are making your labels, it is generally better to use ...
- Wed Apr 13, 2011 9:54 pm
- Forum: Windows
- Topic: error while opening sound device?
- Replies: 26
- Views: 74626
Re: error while opening sound device?
Recording says: Front Mic-Realtek high def audio- not plugged in Microphone-Realtek- not plugged in Line in-Realtek- not plugged in That's the problem. Windows does not recognise any available recording input, which means that there is no recording input available for Audacity. This is confirmed by...
- Wed Apr 13, 2011 9:42 pm
- Forum: Nyquist
- Topic: Vibrato Nyquist script
- Replies: 18
- Views: 9149
Re: Vibrato Nyquist script
If the note is less than 100000 samples and is mono, you can use this code in the "Nyquist Prompt" effect: It would be quite easy to turn this code into a "plug-in". The first 4 lines set the user input variables, (setq initial-speed 1.0) ; Hz (setq final-speed 4.0) (setq initia...
- Wed Apr 13, 2011 9:37 pm
- Forum: Nyquist
- Topic: Vibrato Nyquist script
- Replies: 18
- Views: 9149
Re: Vibrato Nyquist script
The sound samples in the warble-tutorial as well as the vinyl scratch are longer than 2 seconds...I suppose that's because since the oscillation repeats That's because the wavetable repeats. The wavetable in the warble tutorial is the default sine table which consists of just one cycle of a sine wa...
- Wed Apr 13, 2011 9:20 pm
- Forum: Nyquist
- Topic: Vibrato Nyquist script
- Replies: 18
- Views: 9149
Re: Vibrato Nyquist script
I'd like to add a little vibrato on one note How long is that one note? If the note is less than 100000 samples and is mono, you can use this code in the "Nyquist Prompt" effect: (setq initial-speed 1.0) ; Hz (setq final-speed 4.0) (setq initial-depth 50) ; scale of 0 to 100 (setq final-d...