Search found 59476 matches
- Wed Jan 23, 2013 7:12 pm
- Forum: Windows
- Topic: Feedback on Line-in
- Replies: 5
- Views: 1041
Re: Feedback on Line-in
In the Transport menu, turn of "Software Playthrough" and turn on "Overdub". "Software Playthrough" should not be used when recording with a microphone because it creates a delay (echo).
- Wed Jan 23, 2013 4:32 am
- Forum: Windows
- Topic: Symbols in file names in Files->Recent
- Replies: 4
- Views: 560
Re: Symbols in file names in Files->Recent
Interesting - on Linux an & in the name does not show up as a character, but underlines the next character.
test&1.aup shows as test1.aup
test&1.aup shows as test1.aup
- Wed Jan 23, 2013 4:27 am
- Forum: Audio Processing
- Topic: Can you help me EQ/process my live MP3 recording?
- Replies: 37
- Views: 12021
Re: Can you help me EQ/process my live MP3 recording?
I think Audacity as shipped can read/write FLAC format without having to add ffmpeg libraries. Yes it can. Audacity also supports "Ogg Vorbis" which is a "lossy" format with similar compression capability to MP3, but without some of the design limitations and is free ( MP3 is re...
- Wed Jan 23, 2013 4:22 am
- Forum: Audacity 2.x Feedback and Reviews
- Topic: Large files
- Replies: 8
- Views: 2424
Re: Large files
Yes.Trebor wrote:Is that "pre-filtered" via equalization (without changing the sample rate)
- Wed Jan 23, 2013 2:52 am
- Forum: Mac OS X
- Topic: Update for Audaciity for OS 10.8.2
- Replies: 3
- Views: 18934
Re: Update for Audaciity for OS 10.8.2
See "System Requirements" on the download page.
- Wed Jan 23, 2013 1:53 am
- Forum: Nyquist
- Topic: A Study in Pink
- Replies: 26
- Views: 10491
Re: A Study in Pink and brown
We can remove DC without filtering: (defun remove-dc (sig) (diff sig (calc-dc sig))) ;;; calculate dc offset (defun calc-dc (sig) (sref (sound (mult (integrate sig) (/ (get-duration 1)))) (/ (1- len) *sound-srate*))) (remove-dc s) To limit the upper frequency range we can make use of the Nyquist–Sha...
- Wed Jan 23, 2013 12:01 am
- Forum: macOS
- Topic: Nyquist files could not be found[SOLVED]
- Replies: 2
- Views: 1326
Re: Nyquist files could not be found.
You have probably not installed Audacity correctly.
Carefully follow the installation instructions for installing the .dmg file here: http://audacityteam.org/download/mac
Carefully follow the installation instructions for installing the .dmg file here: http://audacityteam.org/download/mac
- Tue Jan 22, 2013 11:59 pm
- Forum: macOS
- Topic: Hard-copy of manual
- Replies: 1
- Views: 472
Re: Hard-copy of manual
Is it on-line manuals that you don't like, or the html format?
The complete manual is includes in the Mac OS X .dmg installer, but it is in html format.
There are also some books available (real paper) http://wiki.audacityteam.org/wiki/Books_about_Audacity
The complete manual is includes in the Mac OS X .dmg installer, but it is in html format.
There are also some books available (real paper) http://wiki.audacityteam.org/wiki/Books_about_Audacity
- Tue Jan 22, 2013 11:51 pm
- Forum: GNU/Linux
- Topic: Saving usb output from a fender mustang-I amp [linux]
- Replies: 13
- Views: 24130
Re: Saving usb output from a fender mustang-I amp [linux]
Check the recoding levels in alsamixer
(open a terminal window and type alsamixer)
You will probably need to change the alsamixer sound card selection (F6 key) to get to the USB device - then check if you can turn up the capture level.
(open a terminal window and type alsamixer)
You will probably need to change the alsamixer sound card selection (F6 key) to get to the USB device - then check if you can turn up the capture level.
- Tue Jan 22, 2013 11:36 pm
- Forum: Nyquist
- Topic: Beginner's question
- Replies: 43
- Views: 16541
Re: Beginner's question
abs-env evaluates the argument in the default environment. http://www.cs.cmu.edu/~rbd/doc/nyquist/part8.html#index550 I'll give an example to demonstrate: If you select a section of a track and then apply the following code in the Nyquist Prompt effect: (noise 2) It will generate noise that is twic...