Search found 59476 matches

by steve
Fri Oct 05, 2018 7:06 pm
Forum: Nyquist
Topic: Lists as data type for Plugin "Control" parameter?
Replies: 5
Views: 805

Re: Lists as data type for Plugin "Control" parameter?

The ;control headers are not really specifying "data types", though they do affect the data type of the input. In brief, Nyquist is an interpreted language. The Nyquist interpreter and runtime have been shoehorned into Audacity. Nyquist does not have any built-in support for graphical inte...
by steve
Fri Oct 05, 2018 4:45 pm
Forum: macOS
Topic: Removing any Cached/Temp Audio Files??
Replies: 10
Views: 1891

Re: Removing any Cached/Temp Audio Files??

When recording into a project that has already been saved, the temporary file are written into the saved project's "_data" folder. For projects that have not been saved, the temporary files are written into Audacity's temp folder. The location of that folder can be found by looking in the ...
by steve
Fri Oct 05, 2018 4:33 pm
Forum: GNU/Linux
Topic: Audacity Segfault after loading a project
Replies: 6
Views: 959

Re: Audacity Segfault after loading a project

Commit b5a7b67cb713462250557e0d189a7e910853e1e3 has fixes for crash issues (it's the latest version at time of writing).
by steve
Fri Oct 05, 2018 4:24 pm
Forum: Adding Features to Audacity
Topic: Load portions of a large file
Replies: 2
Views: 344

Re: Load portions of a large file

It depends on the format of the file. For uncompressed formats (such as WAV or AIFF), you can enable the option "Read uncompressed audio files from original location (faster)" https://manual.audacityteam.org/man/import_export_preferences.html This sets out the track as blue diagonal lines ...
by steve
Fri Oct 05, 2018 4:13 pm
Forum: macOS
Topic: Audacity Mojave
Replies: 2
Views: 359

Re: Audacity Mojave

Which version of Audacity?
Can you give steps to reproduce the problem?
by steve
Fri Oct 05, 2018 10:25 am
Forum: Windows
Topic: Can't import opus audio track from mp4 file
Replies: 1
Views: 773

Re: Can't import opus audio track from mp4 file

As a long term solution, we would like to include built-in support for opus. We would also like to update FFmpeg and several other libraries. However, we only have a very small development team and a lot of competing priorities, so for now the answer is to use a 3rd party tool to convert opus files ...
by steve
Fri Oct 05, 2018 9:59 am
Forum: Windows
Topic: Paste Special
Replies: 4
Views: 366

Re: Paste Special

Audacity does not have that feature built in, but there's a Nyquist plug-in that can do it: viewtopic.php?p=208312#p208312

Instructions for installing Nyquist plug-ins: https://wiki.audacityteam.org/wiki/Down ... ns#install
by steve
Fri Oct 05, 2018 9:48 am
Forum: Audacity 2.x Feedback and Reviews
Topic: Audacity 2-3-0 will not launch in Windows Vista :¬( [SOLVED]
Replies: 11
Views: 11712

Re: Audacity 2-3-0 will not launch in Windows Vista :¬( [SOLVED :¬]

fas42 wrote:
Fri Oct 05, 2018 4:48 am
I have Windows 8.1, and the 2015 Redistributable - but still 2.3.0 is not launching ...
What is the exact error message when you try to launch Audacity?
by steve
Thu Oct 04, 2018 10:26 pm
Forum: Windows
Topic: Paste Special
Replies: 4
Views: 366

Re: Paste Special

kevosman wrote:
Thu Oct 04, 2018 10:18 pm
My question relates to Paste Special (that's what it's called in one of the ACX expert videos)
Please point us to that "ACX expert video" so we can see what you mean.
by steve
Thu Oct 04, 2018 10:11 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

In version 4 plug-ins the global variable that passes audio from the Audacity track to Nyquist is *TRACK* In earlier versions, the global variable that passes audio from the Audacity track to Nyquist is S So when converting old code to the new syntax, you need to locate where the track audio is bein...