Search found 1730 matches

by Robert J. H.
Sat Jun 20, 2015 8:23 pm
Forum: New Plug-Ins
Topic: Karaoke, Rotation, Panning & more
Replies: 109
Views: 44567

Re: Karaoke, Rotation, Panning & more

Hello, I downloaded this plugin because the demo (make someone happy) impressed me. I also downloaded the song clip and tried to remove vocals on the unedited part (first 15 seconds). However, after using the default settings nothing happens. The track still has the vocals. I tried changing the low...
by Robert J. H.
Sat Jun 20, 2015 7:59 pm
Forum: New Plug-Ins
Topic: Background Audio
Replies: 7
Views: 1624

Re: Background Audio

Could you attach this passage?
A problem description is probably not enough.
by Robert J. H.
Sat Jun 20, 2015 7:17 pm
Forum: Windows
Topic: Remove vocals from a song
Replies: 3
Views: 344

Re: Remove vocals from a song

You'll need a stereo version for it to be successful.
Some vocals remain (-40 dB RMS):
etta james.mp3
(963.28 KiB) Downloaded 65 times
Robert
by Robert J. H.
Wed Jun 03, 2015 9:25 am
Forum: Feature Request Archive
Topic: Quick and easy crossfade
Replies: 13
Views: 1801

Re: Quick and easy crossfade

Sadly, the effect is not very vi-user friendly.

It works for recently pasted clips but there is still the tab shortcut missing to navigate from clip to clip.

Robert
by Robert J. H.
Tue Jun 02, 2015 6:47 am
Forum: Nyquist
Topic: Can this code be converted to the nyquist notation?
Replies: 2
Views: 1297

Re: Can this code be converted to the nyquist notation?

Hi Aphilentus Your code could of course be transferred to Nyquist code. However, I don't think that you would be happy with it. The code takes a brute-force approach but does not do anything meaningful after all: - The first loop advances one sample at a time - The second loop adds up the samples wi...
by Robert J. H.
Mon Jun 01, 2015 10:52 pm
Forum: Windows
Topic: Audacity Records sounded like Minus one
Replies: 9
Views: 531

Re: Audacity Records sounded like Minus one

julious wrote:Thanks for the feedback Koz but the problem is still thesame. Im exporting the recorded song as mp3 and it can play the song but it sounds like im singing in the tunnel or something like minus one
Have you made Koz' test?
Perhaps, you could attach a short excerpt (as wav).
by Robert J. H.
Sat May 30, 2015 6:25 am
Forum: Making Music with Audacity
Topic: Speech to song
Replies: 4
Views: 996

Re: Speech to song

kozikowski wrote:Do you have an example of someone else who did this? Links?
Koz
http://research.microsoft.com/en-us/um/ ... howto.html

Pretty easy to use.
Unfortunately not free--trial available.

Robert
by Robert J. H.
Fri May 29, 2015 2:14 am
Forum: Feature Request Archive
Topic: Bug: default sample format ignored for imports
Replies: 57
Views: 6360

Re: Bug: default sample format ignored for imports

Some file imports use the default sample format setting, others don't. The ones that don't include APE (or any other ffmpeg format) and OGG. They are always 16-bit regardless of the setting. Bug reports about Audacity should please give your version of Windows, Mac or Linux and three-section versio...
by Robert J. H.
Thu May 28, 2015 10:05 am
Forum: Nyquist
Topic: Bit crusher
Replies: 2
Views: 5400

Re: Bit crusher

Why not simply quantize?

Code: Select all

(quantize s 256)
gives 8-bit.

Logand, truncate and so on won't work with sounds--the former only with integer in fact.
by Robert J. H.
Thu May 28, 2015 1:17 am
Forum: Feature Request Archive
Topic: Export MP3 in float
Replies: 11
Views: 1916

Re: Export MP3 in float

MP3 does not have "bit depth" in the same way that uncompressed PCM audio does. As far as I'm aware, the "numbers" in an MP3 file are floating point numbers, but these do not correspond directly to sample values. The bit depth of the decoded MP3 file depends on the decoder. Almost all MP3 decoders ...