Search found 59476 matches
- Mon Nov 02, 2020 8:46 pm
- Forum: Macros and Scripting
- Topic: navigating labels?
- Replies: 15
- Views: 840
Re: navigating labels?
In Audacity 2.4.2 they are here: https://manual.audacityteam.org/man/ext ... speed.html
- Mon Nov 02, 2020 8:27 pm
- Forum: Macros and Scripting
- Topic: navigating labels?
- Replies: 15
- Views: 840
Re: navigating labels?
They're in the "Extra" menu.
The "Extra" menu has a lot of commands that are rarely used in normal editing, so it is hidden by default. To see the Extra menu, enable it in the "View" menu.
The "Extra" menu has a lot of commands that are rarely used in normal editing, so it is hidden by default. To see the Extra menu, enable it in the "View" menu.
- Mon Nov 02, 2020 7:50 pm
- Forum: Macros and Scripting
- Topic: Appending to Existing Track Name
- Replies: 3
- Views: 362
Re: Appending to Existing Track Name
Not with an ordinary macro because ordinary macros are just a list of commands. There's no facility to assign variables. You can do it with Nyquist . For simplicity, if there's just one track: ;type tool (setf suffix "Audacity") (setf prefix (second (first (first (aud-get-info "tracks...
- Mon Nov 02, 2020 6:22 pm
- Forum: Windows
- Topic: mix stereo down to mono changes playback speed
- Replies: 9
- Views: 781
Re: mix stereo down to mono changes playback speed
There's a bug in Audacity 2.4.2. If a stereo track has a different sample rate to the Project Rate, then "Mix Stereo to Mono" will incorrectly resample the audio. To work around the bug, Resample the track to the Project Rate before mixing to mono.
- Mon Nov 02, 2020 5:41 pm
- Forum: New Plug-Ins
- Topic: 78rpm EQ Curve Generator
- Replies: 56
- Views: 22836
Re: 78rpm EQ Curve Generator
Is it OK to use ver.2 (small bugs for me not a problem)? Or I have to use the latest ver.2_7? If you are referring to Audacity versions, the current version is 2.4.2 https://www.audacityteam.org/download/ This is an ancient forum topic and lots has changed in the past 10 years. The "78EQCurveG...
- Mon Nov 02, 2020 5:27 pm
- Forum: Windows
- Topic: Mixing one kind of Noise in multiple audio tracks
- Replies: 7
- Views: 163
- Mon Nov 02, 2020 4:25 pm
- Forum: Windows
- Topic: Mixing one kind of Noise in multiple audio tracks
- Replies: 7
- Views: 163
Re: Mixing one kind of Noise in multiple audio tracks
In that case you just need the "Import2:" command to import the noise, followed by one of the Export commands (such as "ExportWav:").
For more information about Macros: https://manual.audacityteam.org/man/macros.html
For more information about Macros: https://manual.audacityteam.org/man/macros.html
- Mon Nov 02, 2020 4:22 pm
- Forum: Macros and Scripting
- Topic: Change pitch repeatedly with macro
- Replies: 4
- Views: 482
Re: Change pitch repeatedly with macro
if I change pitch multiple times, quality of result file would be worst. Theoretically yes, but when using the "high quality" setting there is actually very little noticeable difference between incremental changes and one big change. Try it, you may find that it is good enough (and it wil...
- Mon Nov 02, 2020 4:12 pm
- Forum: Windows
- Topic: Mixing one kind of Noise in multiple audio tracks
- Replies: 7
- Views: 163
Re: Mixing one kind of Noise in multiple audio tracks
Are all of the files the same length?
- Mon Nov 02, 2020 3:45 pm
- Forum: Macros and Scripting
- Topic: Change pitch repeatedly with macro
- Replies: 4
- Views: 482
Re: Change pitch repeatedly with macro
"Undo" is difficult to use with Macros because there is a contradiction depending on whether we consider a macro to be one command or multiple commands (it is actually one command that contains multiple commands). This leads to unpredictable behavior. If you want a series of files that are...