Search found 59476 matches
- 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...
- 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 ...
- 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).
- 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 ...
- 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?
Can you give steps to reproduce the problem?
- 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 ...
- 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
Instructions for installing Nyquist plug-ins: https://wiki.audacityteam.org/wiki/Down ... ns#install
- 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
- Thu Oct 04, 2018 10:26 pm
- Forum: Windows
- Topic: Paste Special
- Replies: 4
- Views: 366
- 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...