Search found 59476 matches

by steve
Wed Aug 02, 2017 9:50 am
Forum: Windows
Topic: Win7 x64 Audacity 2.1.3 Side by Side Conflict Errors
Replies: 26
Views: 12189

Re: Win7 x64 Audacity 2.1.3 Side by Side Conflict Errors

Melchior wrote:and was checking my Windows System Event logs and came across the SideBySide errors.
Is it actually a problem with regard to Audacity functioning correctly?
by steve
Wed Aug 02, 2017 9:48 am
Forum: Nyquist
Topic: Create Label for Each Clip in Track
Replies: 5
Views: 1739

Re: Create Label for Each Clip in Track

Did you understand the code? If not, I'd be happy to answer questions. If you'd be interested in making it into an installable plug-in (that just needs a few more headers adding), and support for stereo tracks (that needs "(get '*track* 'clips)" to be handled fully), then I think it could ...
by steve
Wed Aug 02, 2017 9:41 am
Forum: Windows
Topic: Problem opening Audacity project file
Replies: 7
Views: 532

Re: Problem opening Audacity project file

NativeAltnative wrote:in the partition
What does that mean? That sounds like it 'may' be a problem.
by steve
Wed Aug 02, 2017 9:25 am
Forum: Audiobook Production
Topic: Open Core Audio
Replies: 21
Views: 5217

Re: Open Core Audio

This is a broad statement. "any XLR mic", that does not specify a particular use case: For $32.00 I can connect any XLR mic to my iPhone. This is a specific use case: no one with one day of experience would take a condenser mic into the field to record interviews "Field recording"...
by steve
Wed Aug 02, 2017 12:40 am
Forum: Audiobook Production
Topic: Open Core Audio
Replies: 21
Views: 5217

Re: Open Core Audio

I think I am dead on, as far as staying on topic I was commenting about the topic drifting away from the original subject "Open Core Audio" (as in the topic subject line), but as the original subject was answered long ago it's not important. Rather, I was intrigued by your statement: &quo...
by steve
Tue Aug 01, 2017 11:37 pm
Forum: Audiobook Production
Topic: Open Core Audio
Replies: 21
Views: 5217

Re: Open Core Audio

Mack Caster wrote:For $32.00 I can connect any XLR mic to my iPhone.
We're drifting quite a long way from the original topic of "opening a CAF file", but out of interest, where's the 48v phantom power in that set-up?
by steve
Tue Aug 01, 2017 11:32 pm
Forum: Windows
Topic: Newbie Question Old Cassette Tapes and
Replies: 3
Views: 364

Re: Newbie Question Old Cassette Tapes and

There are several approaches that you can take. The basic idea is that you need to create a separate file for each track, then import them all into your CD burning software and create an "audio CD". Probably best if you have look through the relevant parts of these tutorials: http://manual...
by steve
Tue Aug 01, 2017 10:35 pm
Forum: GNU/Linux
Topic: need speed
Replies: 58
Views: 7605

Re: need speed

autodctr wrote: In fact, it still works in that,
1) Are you sure it "still" works?
2) What is that set-up (in detail)?
autodctr wrote:I am unable to record in 2.0 and reliably play it back and edit it in 2.1.
There's no reason in Audacity why that should not work. What's the problem when you try?
by steve
Tue Aug 01, 2017 10:22 pm
Forum: Nyquist
Topic: Create Label for Each Clip in Track
Replies: 5
Views: 1739

Re: Create Label for Each Clip in Track

Crossed posts. (setf mylist (get '*track* 'clips)) (print (dolist (x mylist) (print x) (list (list x "label") ) (setf i (1+ i)))) You're pretty close. To create the labels, you need to return the specially crafted "list of lists". You don't need to print it. Assuming that you are...
by steve
Tue Aug 01, 2017 9:25 pm
Forum: Nyquist
Topic: Create Label for Each Clip in Track
Replies: 5
Views: 1739

Re: Create Label for Each Clip in Track

Until recently, that would not have been possible. In "version 4" plug-in code, you can get the times for start and end of audio clips from the *TRACKS* property list. For more info, see: http://wiki.audacityteam.org/wiki/Nyquist_Plug-ins_Reference#.2ATRACK.2A Some info about creating labe...