Search found 1327 matches

by Edgar
Mon Sep 06, 2010 4:17 pm
Forum: Audio Processing
Topic: Delete between labels
Replies: 28
Views: 7309

Re: Delete between labels

In the same launch as above I tried some more things. I can now see that it is selecting a region in the LT that puts the link chains in the wave track (WT), and it happens on any LT/WT pair: upper snippet.png In fact, try this: ON at launch, gen noise, use menu to create an LT--WT has chains all ov...
by Edgar
Mon Sep 06, 2010 4:01 pm
Forum: Audio Processing
Topic: Delete between labels
Replies: 28
Views: 7309

Re: Delete between labels

I see another bug--the draw refresh rectangle is not calculated correctly all the time when linking is on How are you getting tiles in the lower audio track? The first label track should mean that the lower audio track is in its own group. Have you got a screen shot of the whole window? Tried sendi...
by Edgar
Mon Sep 06, 2010 1:55 am
Forum: Audio Processing
Topic: Delete between labels
Replies: 28
Views: 7309

Re: Delete between labels

I see another bug--the draw refresh rectangle is not calculated correctly all the time when linking is on How are you getting tiles in the lower audio track? The first label track should mean that the lower audio track is in its own group. Have you got a screen shot of the whole window? Sorry, I on...
by Edgar
Mon Sep 06, 2010 12:06 am
Forum: Windows
Topic: Turntable Feature for listening without recording
Replies: 6
Views: 4038

Re: Turntable Feature for listening without recording

RickMP wrote:If not, is there other software available having this feature?
RealPlayer (even the free SP version) does this with a 30 minute buffer. At least on some streams--all "live" internet radio I have tried works but the only "archived" show I listen to does not.
by Edgar
Mon Sep 06, 2010 12:00 am
Forum: Audio Processing
Topic: Delete between labels
Replies: 28
Views: 7309

Re: Delete between labels

What I am suggesting would be consistent behaviour is that double clicking on a non-empty part of a label track would produce the same result as clicking on a non-empty part of an audio track. In terns of what is selected, I find the behaviour of clicking on label text is a bit strange, though it w...
by Edgar
Sun Sep 05, 2010 5:48 pm
Forum: Audio Processing
Topic: Delete between labels
Replies: 28
Views: 7309

Re: Delete between labels

Personally I would like to select between labels by double-click in the label track. Double (left) click to select region between labels is easy--just add a few lines of code to TrackPanel.cpp around line #4595 (as usual, I have followed my convention of including some context code before and after...
by Edgar
Sat Sep 04, 2010 4:21 am
Forum: General Audio Programming
Topic: How can Audacity hobbyist programmers share code?
Replies: 4
Views: 1567

Re: How can Audacity hobbyist programmers share code?

I can't see any obvious place to share code than here. You can attach a file with .patch extension up to 1 MB - should be enough? To paraphrase the immortal words of Bill Gates -- "1 MB should be enough!" I am a firm believer in doing things in small steps and testing rigorously. Where is the threa...
by Edgar
Fri Sep 03, 2010 8:29 am
Forum: Mac OS X
Topic: How to move tracks along the time line?
Replies: 6
Views: 37436

Re: How to move tracks along the time line?

If the user can compile Audacity and does not want a lot of error checking it is probably not hard. Otherwise, an external scripting tool (I recommend AutoIT3--it is free, powerful and reasonable to learn) would work best.
by Edgar
Thu Sep 02, 2010 11:03 pm
Forum: General Audio Programming
Topic: How can Audacity hobbyist programmers share code?
Replies: 4
Views: 1567

How can Audacity hobbyist programmers share code?

I am sure there must be other non-Development Team programmers out there like myself who like to adapt the Audacity code to suit their own needs. What is the best way for us to share and discuss these code changes? What is the best way for non-programmer users to try out these adapted versions of Au...
by Edgar
Thu Sep 02, 2010 7:38 pm
Forum: Audio Processing
Topic: Delete between labels
Replies: 28
Views: 7309

Re: Delete between labels

Select Between Labels First, change the header file Menus.h near line number 244 (again, I add a bit of context and commented the addition with my initials): void OnSelectAllTracks(); void OnDeleteBetweenLabels();//efm5 void OnSelectBetweenLabels();//efm5 Now, change the header file Project.h near ...