Search found 59476 matches
- Tue Oct 06, 2015 11:31 am
- Forum: Windows
- Topic: Getting 7.1 output to work properly?
- Replies: 8
- Views: 746
Re: Getting 7.1 output to work properly?
Information could be there and I just plain miss it We're aware that is a problem. Unfortunately when we freeze the manual for release, we cannot keep the Search function (because it uses server-side scripting). However, there are a couple of useful search tips. One is to search Google with the que...
- Tue Oct 06, 2015 10:41 am
- Forum: Windows
- Topic: Getting 7.1 output to work properly?
- Replies: 8
- Views: 746
Re: Getting 7.1 output to work properly?
Shouldn't this be there too? :D I think this is one of the 1/10 questions that isn't in the FAQ. "Most" (9/10) questions that people ask about Audacity are the same questions - these are the ones that we aim for in the FAQ (because they are frequently asked questions). There are thousands...
- Tue Oct 06, 2015 9:52 am
- Forum: Feature Request Archive
- Topic: Moving tracks up/down - specifying how far
- Replies: 12
- Views: 5003
Re: Moving tracks up/down - specifying how far
I see there is a limitation or bug that the added shortcut is not shown in the dropdown menu as one would expect. Is that known about? David probably didn't 'forget'. The dropdown menu is constructed differently from the main menu. The main menu uses "AddItem" which supports accelerators ...
- Tue Oct 06, 2015 8:45 am
- Forum: Windows
- Topic: Dialogic .vox Format
- Replies: 1
- Views: 1128
Re: Dialogic .vox Format
Select "other uncompressed files", then in the options, set the header to "RAW (headerless)" and the encoding to "VOX ADPCM". Before you export, ensure that the project is all mono, and the "project rate" (lower left corner of the main Audacity window) is &quo...
- Tue Oct 06, 2015 8:39 am
- Forum: Feature Request Archive
- Topic: Saving files in place
- Replies: 12
- Views: 3468
Re: Saving files in place
I am an old-timer, and can remember the day when you could load a file, edit it, and save the changes back to the file you were editing. Old enough remember bouncing tracks from one tape machine to another? Yes there is a "danger" of permanently overwriting an important file, but more imp...
- Mon Oct 05, 2015 9:14 pm
- Forum: Audio Processing
- Topic: zero crossing plot
- Replies: 7
- Views: 975
Re: zero crossing plot
Just for interest, this code uses the same detection method as the previous example, but rather than printing the output to the Debug window, it creates labels at each zero crossing point. The labels are held in the variable "output" in the form of a "list" of labels, where each ...
- Mon Oct 05, 2015 9:00 pm
- Forum: Audio Processing
- Topic: zero crossing plot
- Replies: 7
- Views: 975
Re: zero crossing plot
If the input to my voltage to frequency causes its output to be 1 KHz for 10 mS, I'd like the output to be 20 lines, each line being .5 milliseconds more than the line before it. So you want positive going zero crossings AND negative going zero crossings? In that case, try this version. I've added ...
- Mon Oct 05, 2015 8:33 pm
- Forum: Audio Processing
- Topic: zero crossing plot
- Replies: 7
- Views: 975
Re: zero crossing plot
Here is another solution. The code here is much harder to follow, but is much faster than the previous examples. This code is derived from a code snippet that Robert J H posted to the forum some time ago. In this version, the output is as comma separated values (CSV). (setf *float-format* "%.3f...
- Mon Oct 05, 2015 8:26 pm
- Forum: Windows
- Topic: BUG. "Apply Chain" doesn't work with "Silence"
- Replies: 14
- Views: 950
Re: BUG. "Apply Chain" doesn't work with "Silence"
That is a design limitation if even user presets don't save the duration, yes. Generator "Presets" do not store the duration setting. This is an example of how the settings are stored for the "Tone" generator: Parameters=Amplitude="0.800000000000" Frequency="440.0...
- Mon Oct 05, 2015 6:32 pm
- Forum: Audio Processing
- Topic: zero crossing plot
- Replies: 7
- Views: 975
Re: zero crossing plot
This gives a list of intervals between successive positive going zero crossing points: (do ((i 0 (1+ i)) (output "") previous ; previous zero crossing time (default nil) period ; duration between successive zero crossings (flag (> (snd-fetch (snd-copy *track*)) 0)) (val (snd-fetch *track*)...