Search found 59476 matches

by steve
Tue Apr 09, 2013 2:22 pm
Forum: Windows
Topic: Edit the volume of a recorded phone conversation help
Replies: 6
Views: 2069

Re: Edit the volume of a recorded phone conversation help

The best way is to painstakingly go through using the Envelope Tool to adjust the volume up and down. http://manual.audacityteam.org/o/man/envelope_tool.html If you want a quicker way, you could try this "Automatic Gain Control" plug-in effect: http://forum.audacityteam.org/viewtopic.php?p...
by steve
Tue Apr 09, 2013 2:19 pm
Forum: General Audio Programming
Topic: Source Code In Delphi
Replies: 1
Views: 4801

Re: Source Code In Delphi

If you are developing Audacity on Windows you need to use Microsoft Visual Studio C++ Express 2008.
See here for a brief guide to building Audacity on Windows: http://wiki.audacityteam.org/wiki/Developing_On_Windows
by steve
Tue Apr 09, 2013 2:13 pm
Forum: Recording Techniques
Topic: pasting audio without silencing other tracks[SOLVED]
Replies: 14
Views: 3337

Re: putting mp3 in audio without cutting off previous record

How do you use the time shift tool to only move one track? Ensure that you don't have multiple tracks "selected" (http://manual.audacityteam.org/o/man/audacity_selection.html) Ensure that "Sync-Lock" is not enabled: http://manual.audacityteam.org/o/man/sync_locked_tracks.html Mo...
by steve
Tue Apr 09, 2013 2:01 pm
Forum: Windows
Topic: Noise Removal of 78RPM
Replies: 7
Views: 1533

Re: Noise Removal of 78RPM

There's not a huge amount you can do without drastically changing the voice. To make the voice more intelligible through the pops and crackles, you could use the Pop Mute effect to lower some of those really big pops, and then apply some fairly brutal Equalization to bring out the voice and cut the ...
by steve
Tue Apr 09, 2013 1:20 pm
Forum: Windows
Topic: the hiss that wouldn't die
Replies: 5
Views: 881

Re: the hiss that wouldn't die

Could you post a short sample (just a few seconds) in WAV or FLAC format to illustrate the problem. Please ensure that the sample includes some normal level audio and some of the hissy silence.
by steve
Tue Apr 09, 2013 2:20 am
Forum: Nyquist
Topic: elementary snd-fft question
Replies: 21
Views: 6679

Re: elementary snd-fft question

Sorry, I'm misleading and confusing you - my multi-tasking went a bit wonky :? I've also got the opposite problem to you - I'm coming from LISP and trying to get to grips with C++ terminology. Yes SND-FFT is a function that returns an array. SND-FFT is usually used in a method. I think the tutorial ...
by steve
Tue Apr 09, 2013 1:41 am
Forum: Windows
Topic: Importing AC3 5.1 In Audacity vs FFMPEG
Replies: 10
Views: 8936

Re: Importing AC3 5.1 In Audacity vs FFMPEG

Actual export commands (didn't know it mattered since I'm using the same command in Audacity and ffmpeg): - fhgaacenc --vbr 3 --ignorelength - "%f" - ffmpeg -i audio.ac3 -acodec pcm_s16le -f wav - | fhgaacenc --vbr 3 --ignorelength - out.m4a or ffmpeg -i audio.ac3 -acodec pcm_s16le -ar 48...
by steve
Tue Apr 09, 2013 12:12 am
Forum: macOS
Topic: available in Mac App Store
Replies: 6
Views: 3588

Re: available in Mac App Store

itsmusic wrote: As a community we need to objectively look at this situation and figure out how it can be done.
The first task is to persuade Apple to make their terms of service compatible with open source software, and in particular compatible with GPL. To date they have shown no willingness to do so.
by steve
Tue Apr 09, 2013 12:03 am
Forum: Nyquist
Topic: elementary snd-fft question
Replies: 21
Views: 6679

Re: elementary snd-fft question

steve wrote:IMHO object orientated programming in Nyquist is not very pleasant, which is probably why you will find few examples,
There's one example of object orientated programming here: http://forum.audacityteam.org/viewtopic ... 82#p203082
by steve
Mon Apr 08, 2013 11:54 pm
Forum: Nyquist
Topic: elementary snd-fft question
Replies: 21
Views: 6679

Re: elementary snd-fft question

SND-FFT returns an array. SND-FFT is a "class", which normally you would want to access with an "iterator" so that you can step through the sound and get a series of arrays that define the sound. IMHO object orientated programming in Nyquist is not very pleasant, which is probabl...