If they are also using Ubuntu, perhaps take a look to see how their system mounts the NAS drive, and set yours up the same way.
Search found 59476 matches
- Thu Aug 15, 2019 2:34 pm
- Forum: GNU/Linux
- Topic: Audacity fails to open files through symbolic link
- Replies: 6
- Views: 554
- Thu Aug 15, 2019 12:25 pm
- Forum: GNU/Linux
- Topic: Audacity fails to open files through symbolic link
- Replies: 6
- Views: 554
Re: Audacity fails to open files through symbolic link
The file sits on our NAS That'll be the problem. Look in "Edit menu > Preferences > Import / Export" (https://manual.audacityteam.org/man/import_export_preferences.html) Ensure that "Copy uncompressed files into the project (safer)" is selected. When attempting to import the fil...
- Thu Aug 15, 2019 10:08 am
- Forum: GNU/Linux
- Topic: Audacity fails to open files through symbolic link
- Replies: 6
- Views: 554
Re: Audacity fails to open files through symbolic link
Seems to work fine for me. If you're talking about opening an Audacity Project, you must have a copy of the project's _data folder, or a link to the project _data folder, in the same location as the link to the .aup file. The name of the _data folder, or link to the _data folder, must have the same ...
- Thu Aug 15, 2019 8:50 am
- Forum: Windows
- Topic: Creating an outdoor PA system sound
- Replies: 4
- Views: 325
Re: Creating an outdoor PA system sound
I want to simulate the sound of a PA system set up in an outdoor setting, where you get some echo from nearby buildings, but faint, also with the reverb that goes with it. Has anyone attempted this, and if so, how did you do it? This plug-in: https://forum.audacityteam.org/viewtopic.php?p=325922#p3...
- Wed Aug 14, 2019 10:52 pm
- Forum: Adding Features to Audacity
- Topic: Piped export, allow export as float32le not just s16le
- Replies: 11
- Views: 1106
Re: Piped export, allow export as float32le not just s16le
Are you talking about "named pipes" (https://manual.audacityteam.org/man/scripting.html) or just about additional export formats?
- Wed Aug 14, 2019 10:39 pm
- Forum: Nyquist
- Topic: *Selection* Variable Not Updating While Nyquist Plugin Is Running
- Replies: 7
- Views: 630
Re: *Selection* Variable Not Updating While Nyquist Plugin Is Running
This is a bit tricky because of some limitations that are currently applied to Nyquist macros. To get the RMS value, we want the plug-in to be an Analyze type, but to run the macro commands we want the plug-in to be a Tools type. I'm hoping that this restriction will be loosened in a future version ...
- Wed Aug 14, 2019 10:07 pm
- Forum: Windows
- Topic: Wave Vocal plugin by https://www.waves.com/ Does not work
- Replies: 5
- Views: 703
Re: Wave Vocal plugin by https://www.waves.com/ Does not work
Online instructions said that I needed to go to preferences, effects, and VST. Then I'd find an option to Rescan VST effects next time Audacity was started. I don't think that's true anymore. That's never been true for Audacity. Audacity doesn't have a "Rescan VST" option, which makes me ...
- Wed Aug 14, 2019 8:58 pm
- Forum: Windows
- Topic: Wave Vocal plugin by https://www.waves.com/ Does not work
- Replies: 5
- Views: 703
- Wed Aug 14, 2019 8:56 pm
- Forum: New Plug-Ins
- Topic: Binson Echorec 2019
- Replies: 17
- Views: 1278
Re: Binson Echorec 2019
A description of this code: ;version 4 ;control gain "Gain" float "" 1 0 10 ;control track "Process track" int "" 1 1 10 (setf id (get '*track* 'index)) ;(print id) (if (= track id) (mult *track* gain) "") ;version 4 This is a "header" that...
- Wed Aug 14, 2019 8:37 pm
- Forum: New Plug-Ins
- Topic: Binson Echorec 2019
- Replies: 17
- Views: 1278
Re: Binson Echorec 2019
I must look up "setf" My first dozen or so plug-ins, I had to look up everything. It's like travelling to another country where no-one speaks English, armed with nothing more than a phrase book. Gradually, things begin to stick, but even now I keep the Xlisp and Nyquist manual bookmarked ...