Search found 59476 matches
- Mon Nov 18, 2019 6:00 pm
- Forum: Windows
- Topic: 14 SPEECH CODING TECHNOLOGIES
- Replies: 1
- Views: 206
Re: 14 SPEECH CODING TECHNOLOGIES
I doubt that anyone on this forum has sufficient understanding of the Russian language to understand the technical details in those videos.
- Mon Nov 18, 2019 5:37 pm
- Forum: Windows
- Topic: Stuck on "Export to MP3"
- Replies: 11
- Views: 342
Re: Stuck on "Export to MP3"
I'm using the latest version of Audacity uploaded today. There are numerous versions of Audacity available on line. The "latest" version is "Audacity 2.3.3 rc02", which is for testing purposes only. Which version have you got? None of the "Export as" options are active...
- Mon Nov 18, 2019 4:00 pm
- Forum: Windows
- Topic: I need help
- Replies: 6
- Views: 336
Re: I need help
Try updating your computer's C++ library by installing "Visual C++ Redistributable for Visual Studio 2015 " from here: https://www.microsoft.com/en-ie/downloa ... x?id=48145 (installation instructions are provided on that page. You should reboot after the installation has completed).
- Mon Nov 18, 2019 2:06 pm
- Forum: Nyquist
- Topic: Matrix-Vector Multiplication in Nyquist
- Replies: 5
- Views: 702
Re: Matrix-Vector Multiplication in Nyquist
I would like to know the right way to compute the products of the same n by m matrix A by around a hundred m by 1 column vectors in Nyquist. Can't you just use MULT? ;; m= 2, n=4 (setf matrix1 (vector (vector 1 2 3 4) (vector 5 6 7 8))) (setf matrix2 (vector 10 11)) (print (mult matrix1 matrix2)) ;...
- Mon Nov 18, 2019 12:53 pm
- Forum: Windows
- Topic: Stuck on "Export to MP3"
- Replies: 11
- Views: 342
Re: Stuck on "Export to MP3"
Do you mean that the options are greyed out?
Which version of Audacity are you using? (look in "Help menu > About Audacity")
- Mon Nov 18, 2019 12:51 pm
- Forum: Windows
- Topic: wxWidgets debugging check failed on opening Audacity
- Replies: 21
- Views: 5711
Re: wxWidgets debugging check failed on opening Audacity
Is downgrading to 2.2.2 just a matter of installing over 2.3.2? If you use the "EXE" installer version, and use the default installation location, then you can overwrite a previous version by running the installer of another version. Please confirm whether downgrading to 2.2.2 fixes the i...
- Mon Nov 18, 2019 12:47 pm
- Forum: Nyquist
- Topic: Matrix-Vector Multiplication in Nyquist
- Replies: 5
- Views: 702
Re: Matrix-Vector Multiplication in Nyquist
What is "A"? Where does "A" come from?dem wrote: ↑Mon Nov 18, 2019 4:15 amCode: Select all
(defun mat-to-snds (A &optional (n (length A))) (dotimes (i n A) (setf (aref A i) (snd-from-array 0 *sound-srate* (aref A i)))))
- Mon Nov 18, 2019 12:42 pm
- Forum: Windows
- Topic: X-Wing fighter radio vocal effect?
- Replies: 8
- Views: 580
Re: X-Wing fighter radio vocal effect?
It's a long time since I've seen StarWars, but the usual approach for creating a "walkie-talkie" type effect is: 1) Apply some distortion (For example, the "Leveller" distortion https://manual.audacityteam.org/man/distortion.html) 2) Apply a "band pass filter" (For exam...
- Mon Nov 18, 2019 12:38 pm
- Forum: Windows
- Topic: trimming an audio
- Replies: 1
- Views: 140
Re: trimming an audio
1) Zoom in on the end of the track (https://manual.audacityteam.org/man/zooming.html) 2) Select the part that you wish to remove (https://manual.audacityteam.org/man/audacity_selection.html) 3) Press the "DEL" key on your keyboard. 4) Export the audio (https://manual.audacityteam.org/man/f...
- Mon Nov 18, 2019 12:30 pm
- Forum: Windows
- Topic: Autocorrelation
- Replies: 6
- Views: 317
Re: Autocorrelation
Is the only reason/purpose why the measure of axis x is so weird, to fit on the scale? No. The horizontal scale is in seconds, as is required for displaying autocorrelation . The range of the scale is from zero to "window size". The size of the FFT window in samples is <fft size>/2, so th...