How are you doing that? Are you using the VST version in Audacity?
Search found 59476 matches
- Mon May 04, 2020 2:53 pm
- Forum: Windows
- Topic: Ambeo Orbit saving files
- Replies: 18
- Views: 1237
- Mon May 04, 2020 12:12 pm
- Forum: Podcasting with Audacity
- Topic: I have bombed the most important episode of my new podcast and desperately need some help.
- Replies: 6
- Views: 337
Re: I have bombed the most important episode of my new podcast and desperately need some help.
The spectrogram track view clearly shows that after the first couple of seconds, there are virtually no frequencies above 4 kHz.
That can happen if the sample rate is reduced to 8000 Hz, but that does not happen with a normal microphone recording.
How / what are you recording?
That can happen if the sample rate is reduced to 8000 Hz, but that does not happen with a normal microphone recording.
How / what are you recording?
- Mon May 04, 2020 12:07 pm
- Forum: macOS
- Topic: Running 2 copies of Audacity
- Replies: 2
- Views: 51
Re: Running 2 copies of Audacity
See this topic: viewtopic.php?f=47&t=110274
- Mon May 04, 2020 12:02 pm
- Forum: Compiling Audacity
- Topic: Building Audacity 2.3.3 is OK,but recording doesn't work
- Replies: 20
- Views: 3169
Re: Building Audacity 2.3.3 is OK,but recording doesn't work
Is there a reason why you are building from source rather than downloading the official release version?
You can get the commit number from the Git command:
(final character is the number "one")
What is the commit number?
You can get the commit number from the Git command:
Code: Select all
git log -1- Mon May 04, 2020 11:59 am
- Forum: macOS
- Topic: I hit record and nothing happens
- Replies: 4
- Views: 109
Re: I hit record and nothing happens
Has this problem appeared after a Mac update? (See: https://osxdaily.com/2011/10/25/check-w ... -mac-os-x/)
- Mon May 04, 2020 10:59 am
- Forum: Windows
- Topic: Instrument pitch drops a half step on playback
- Replies: 2
- Views: 53
Re: Instrument pitch drops a half step on playback
I think it's a minor bug in the Line 6 drivers. Look in the Windows Sound settings and check what sample rate the pod farm is using in the recording and playback tabs. Set the sample rates so that it is the same in both the recording and playback tabs, and set the Audacity Project Rate to the same. ...
- Mon May 04, 2020 10:14 am
- Forum: Windows
- Topic: recording from ezcap232 with micro SD card to pc
- Replies: 1
- Views: 92
Re: recording from ezcap232 with micro SD card to pc
Note that ezcap players are typically very cheap (currently available for US $21.32 on aliexpress). As the price is so low it should not be surprising that the build quality is cheap. We have received multiple reports that they don't last very long - keep your receipt. How do I record from ezcap 232...
- Mon May 04, 2020 10:00 am
- Forum: Windows
- Topic: Opening a Saved Project
- Replies: 1
- Views: 31
Re: Opening a Saved Project
It is normal for applications to list a limited number of recent files. When the list is full, each new file will knock the oldest one off the list. To be able to quickly find your AUP files, I'd recommend putting them somewhere where you can easily find them, for example in Music\Audacity Projects\...
- Mon May 04, 2020 9:52 am
- Forum: Windows
- Topic: default save file type
- Replies: 3
- Views: 38
- Mon May 04, 2020 9:48 am
- Forum: General Audio Programming
- Topic: A C program fails to generate a simple WAV file
- Replies: 2
- Views: 1926
Re: A C program fails to generate a simple WAV file
In case it is of any interest to you, it can be done very easily using Nyquist.
In the Nyquist Prompt, run this code:
In the Nyquist Prompt, run this code:
Code: Select all
;type generate
(setf notes (list C4 D4 E4 F4 G4 A4 B4 C5))
(seqrep (pitch (length notes))
(osc (nth pitch notes)))