Search found 59476 matches

by steve
Mon Sep 03, 2018 12:28 am
Forum: GNU/Linux
Topic: Steinberg UR12 - Audacity 2.2.2 - Linux Mint
Replies: 13
Views: 1450

Re: Steinberg UR12 - Audacity 2.2.2 - Linux Mint

Launch Audacity, or if it is already open, exit the program and re-launch it. Then, "Help menu > Diagnostics > Audio Device Info". When the info window appears, click the "Save" button and save the info somewhere convenient (such as your Desktop). Then attach the saved file to yo...
by steve
Mon Sep 03, 2018 12:24 am
Forum: Windows
Topic: How to stop looping .wav file
Replies: 1
Views: 236

Re: How to stop looping .wav file

dave213 wrote:
Sun Sep 02, 2018 11:30 pm
But the original came as an ever-repeating loop
That is most likely a feature of your audio player rather than anything to do with the WAV file.
by steve
Mon Sep 03, 2018 12:02 am
Forum: Adding Features to Audacity
Topic: Option "Always mix to Stereo" / "Use custom mix"
Replies: 1
Views: 369

Re: Option "Always mix to Stereo" / "Use custom mix"

Otherwise I often create stereo files for MP3 or wav files, so I have to choose "Always mix all tracks down to Stereo or Mono". If you want a mono file and you are set on "Use custom mix", all you have to do is to mix the project down to mono before you export. The "custom ...
by steve
Sun Sep 02, 2018 10:32 pm
Forum: Adding Features to Audacity
Topic: Add ability to use midi synthesizer vst.
Replies: 3
Views: 2540

Re: Add ability to use midi synthesizer vst.

The current version of Audacity can play MIDI. See: https://manual.audacityteam.org/man/note_tracks.html
by steve
Sun Sep 02, 2018 10:23 pm
Forum: Nyquist
Topic: Using *SCRATCH* to process a selection of several tracks
Replies: 12
Views: 1468

Re: Using *SCRATCH* to process a selection of several tracks

By the way, it is recommended to use spaces rather than tabs when indenting Nyquist / LISP code (and most other code). Tabs will often mess up the appearance when others view your code as it is unlikely that they will be using the exact same tab size as you. There's a good, short guide to LISP inden...
by steve
Sun Sep 02, 2018 10:07 pm
Forum: Adding Features to Audacity
Topic: Select Track button - proposal
Replies: 36
Views: 1781

Re: Select Track button - proposal

So what does your proposed "Select" button look like, and where is it?
by steve
Sun Sep 02, 2018 10:04 pm
Forum: Nyquist
Topic: Using *SCRATCH* to process a selection of several tracks
Replies: 12
Views: 1468

Re: Using *SCRATCH* to process a selection of several tracks

For process effects, if a non-audio result is returned, processing stops after the first returned value. In most cases this is what you would want. For example, if the user selects 16 stereo tracks and applies an effect that requires mono tracks, you wouldn't want the error message popping up 32 tim...
by steve
Sun Sep 02, 2018 6:57 pm
Forum: Nyquist
Topic: Using *SCRATCH* to process a selection of several tracks
Replies: 12
Views: 1468

Re: Using *SCRATCH* to process a selection of several tracks

Try changing the store macro to:

Code: Select all

(defmacro store (signal)
  `(progn
    (putprop '*SCRATCH* ,signal 'DM-CONVOLVE-STORAGE)
    (format t "~a" (snd-flatten ,signal ,ny:all))))
by steve
Sun Sep 02, 2018 6:41 pm
Forum: Windows
Topic: Extracting dB values by timestamp
Replies: 2
Views: 221

Re: Extracting dB values by timestamp

up to 1 million samples The tool can be easily modified to handle more samples, but be warned that each character is 1 byte, so there are at lest 8 bytes per sample (depending on the format options), so data from 1 million samples is at least 8 MB. Many tools will freeze or crash when given extreme...
by steve
Sun Sep 02, 2018 6:16 pm
Forum: Adding Features to Audacity
Topic: Select Track button - proposal
Replies: 36
Views: 1781

Re: Select Track button - proposal

waxcylinder wrote:
Sun Sep 02, 2018 6:05 pm
Which is why I still like the idea of a button simply labelled "Select" - clear, concise & "discoverable"
Sure. So assuming that you don't want to occupy more screen space, which features would you leave out?