Search found 59476 matches
- Wed May 01, 2019 7:52 pm
- Forum: Windows
- Topic: Many frequencies
- Replies: 2
- Views: 339
Re: Many frequencies
I want to reproduce as many sound frequencies as possible and let each frequency play individually If you are wanting to produce one frequency at a time, you can generate them with "Generate menu > Tone". For a single pure frequency, ensure that "Sine" is selected. https://manua...
- Wed May 01, 2019 6:19 pm
- Forum: macOS
- Topic: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
- Replies: 15
- Views: 3145
Re: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
How about if you drop it down to 8000? I'd expect it to sound a bit muffled, but I'm interested to know if you still get the pops and crackles.
- Wed May 01, 2019 12:05 pm
- Forum: macOS
- Topic: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
- Replies: 15
- Views: 3145
Re: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
Try changing it to 44100.
Any better? Any worse?
Try changing it to 22050.
Any better? Any worse?
Any better? Any worse?
Try changing it to 22050.
Any better? Any worse?
- Wed May 01, 2019 11:50 am
- Forum: Windows
- Topic: Noise reduction effect.
- Replies: 21
- Views: 2051
- Wed May 01, 2019 11:49 am
- Forum: macOS
- Topic: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
- Replies: 15
- Views: 3145
Re: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
Audacity does not support data compression on playback. Due to the limited bandwidth of bluetooth, digital audio data is compressed before being sent to bluetooth headphones / speakers (similar to MP3 compression for streaming audio over the Internet). Because Audacity is designed for high quality a...
- Wed May 01, 2019 10:58 am
- Forum: macOS
- Topic: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
- Replies: 15
- Views: 3145
Re: static, pops and crackles using AirPods with Audacity 2.3.1 and MacBook Pro iOS 10.14.4
What happens if you use wired headphones plugged directly into your computer?
- Wed May 01, 2019 9:59 am
- Forum: Adding Features to Audacity
- Topic: Export of Track Lengths
- Replies: 12
- Views: 3860
Re: Export of Track Lengths
I do realize that this is only a concern for the subset of Audacity users who use the tool for presentations, and I have no idea how big that subset is; I just know that this feature would be very useful to that subset. My hope was that even if that subset was relatively small, the easy of implemen...
- Wed May 01, 2019 9:10 am
- Forum: Windows
- Topic: Custom nyquist plugin crashes audacity
- Replies: 3
- Views: 328
Re: Custom nyquist plugin crashes audacity
It can be useful to use PRINT and/or FORMAT commands to create debug info. For example: ;nyquist plug-in ;version 4 ;type generate ;name (_ "Thue Morse generator") ;action (_ "Generating Thue Morse square waves...") ;preview enabled ;control duty (_ "Duty Cycle (%)") re...
- Wed May 01, 2019 9:00 am
- Forum: Windows
- Topic: Custom nyquist plugin crashes audacity
- Replies: 3
- Views: 328
Re: Custom nyquist plugin crashes audacity
In LISP syntax, that could be written as:micsthepick wrote: ↑Wed May 01, 2019 5:25 amCode: Select all
(if (!= bit 0) (if (= on -1) (setf on 1) (setf on -1)))
Code: Select all
(if (/= bit 0)
(setf on (- on)))
- Wed May 01, 2019 8:05 am
- Forum: Windows
- Topic: Custom nyquist plugin crashes audacity
- Replies: 3
- Views: 328
Re: Custom nyquist plugin crashes audacity
I'm not sure what you are trying to do, but I've corrected a load of mistakes so that the code will at least run. Hope this helps: ;nyquist plug-in ;version 4 ;type generate ;name (_ "Thue Morse generator") ;action (_ "Generating Thue Morse square waves...") ;preview enabled ;con...