Search found 59476 matches

by steve
Sun Feb 28, 2021 12:55 pm
Forum: General Audio Programming
Topic: mod-script-pipe
Replies: 25
Views: 13384

Re: mod-script-pipe

Eddy White wrote:
Sun Feb 28, 2021 5:49 am
Yes i am having the same issue. I also feel os.pth certainly has a bug
Which Python script are you referring to?
by steve
Sun Feb 28, 2021 12:05 pm
Forum: Recording Techniques
Topic: Griffin iMic
Replies: 4
Views: 265

Re: Griffin iMic

My iMic has finally given up the ghost, I was hoping fellow Audacity users could point me in the direction of an inexpensive alternative (UK only). What do you want to plug into the audio device? The UCA-202 that waxcylinder posted is suitable for "line level" signals, such as CD players,...
by steve
Sun Feb 28, 2021 12:01 pm
Forum: Windows
Topic: Medical condition, make audio wave smoother, remove zick zacks
Replies: 9
Views: 203

Re: Medical condition, make audio wave smoother, remove zick zacks

Sibb wrote:
Sun Feb 28, 2021 10:21 am
Are there any other tools to analyze what is going on there?
Try the track spectrogram view: https://manual.audacityteam.org/man/spe ... _view.html
by steve
Sun Feb 28, 2021 11:40 am
Forum: Windows
Topic: EXPORTED .WAV FILE LEVELS TOO HOT
Replies: 4
Views: 128

Re: EXPORTED .WAV FILE LEVELS TOO HOT

If the project contains more than one audio track, the tracks are added together ("mixing" = "adding") on export. The "Track gain" sliders affect both the playback level in Audacity, and the level in the exported files. (see: https://manual.audacityteam.org/man/audio_tr...
by steve
Sun Feb 28, 2021 11:36 am
Forum: Windows
Topic: WASAPI records continuously even without signal
Replies: 2
Views: 56

Re: WASAPI records continuously even without signal

However, after shutting off the pc and checking this issue again the problem went away. The web browser add-on "flash player" was notorious for doing that. Even after a web page with flash content was closed, flash could still be running and keeping an audio stream active even though ther...
by steve
Sun Feb 28, 2021 11:26 am
Forum: Windows
Topic: Add-on for transferring audio edits between Blender and Audacity
Replies: 41
Views: 1687

Re: Bug: Importing Labels through command line fails

what is the correct 'do_commands' for setting a range and adding a label to it? To select from 10 to 15 seconds and add a label: SelectTime:End="15" RelativeTo="ProjectStart" Start="10" AddLabel: Note that the commands for Python scripting are the same as Macro command...
by steve
Sat Feb 27, 2021 10:43 pm
Forum: Audiobook Production
Topic: Saving files
Replies: 4
Views: 1195

Re: Saving files

Audacity will not let me use the : in the title. The colon character is a "reserved character" on Windows and must not be used in file names. See: https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file But this is required by ACX. Not according to this page: https://blog.acx....
by steve
Sat Feb 27, 2021 10:03 pm
Forum: New Plug-Ins
Topic: Updated De-Clicker and new De-esser for speech
Replies: 251
Views: 146512

Re: Updated De-Clicker and new De-esser for speech

Ken Clark wrote:
Sat Feb 27, 2021 9:43 pm
Maybe a silly question, but I am not seeing how to install these plug-ins?
These are "Nyquist plug-ins". Installation instructions for Audacity on Windows are here: https://manual.audacityteam.org/man/ins ... st_install
by steve
Sat Feb 27, 2021 9:35 pm
Forum: Macros and Scripting
Topic: Copy selection to new file
Replies: 5
Views: 766

Re: Copy selection to new file

cantgetnosleep wrote:
Sat Feb 27, 2021 8:27 pm
Is there no way to copy the selection of a new project/file?
Not with a macro, and as far as I'm aware that has never been possible in Audacity. Why would you want to do that?
by steve
Sat Feb 27, 2021 9:32 pm
Forum: General Audio Programming
Topic: Analyzing single waveform for frequency over time?
Replies: 3
Views: 1067

Re: Analyzing single waveform for frequency over time?

Maybe there is a plugin that implements a differential function (dv/dt) that will convert the positive edges to positive values and then measure the difference in time between the positive values to get the period, and thus the frequency? I think there's a plug-in somewhere that counts zero crossin...