Search found 30 matches
- Fri Jan 25, 2013 4:37 pm
- Forum: Windows
- Topic: Separating tracks on the fly
- Replies: 14
- Views: 1706
Re: Separating tracks on the fly
Hi rhkrhk and anyone else interested in this subject, Started just a few weeks ago with the conversion of my old vinyls using Audacity and had the same idea as you: Audacity should have a way to create track separators on the fly, while listening the LP. After downloading the Audacity source code, I...
- Thu Jan 24, 2013 10:25 am
- Forum: General Audio Programming
- Topic: Where in code the length of current track can be found?
- Replies: 2
- Views: 7212
Re: Where in code the length of current track can be found?
Thanks Edgar for showing me the way to this code fragment which I could copy to and use in SelectionBar.cpp without any compiler problems: AudacityProject *p = GetActiveProject(); if (p) { p->SkipEnd(true); double playRegionStart, playRegionEnd; p->GetPlayRegion(&playRegionStart, &playRegionEnd); } ...
- Wed Jan 23, 2013 9:34 pm
- Forum: General Audio Programming
- Topic: Where in code the length of current track can be found?
- Replies: 2
- Views: 7212
Where in code the length of current track can be found?
In SelectionBar.cpp I need the length of the current track, thus the 'Audio Position' resulting from the 'Skip to End' knob being pressed.
Where can I find that info and how can I make that info available in the SelectionBar class?
Thanks for any suggestions!
jerome42
Where can I find that info and how can I make that info available in the SelectionBar class?
Thanks for any suggestions!
jerome42
- Tue Jan 22, 2013 7:18 pm
- Forum: General Audio Programming
- Topic: are there others developing the same software patches?
- Replies: 5
- Views: 8247
Re: are there others developing the same software patches?
How long you have to wait for my output, Steve, I don't know.
But a bit of patience will be necessary, I am afraid!
Thanks anyhow for your remarks!
But a bit of patience will be necessary, I am afraid!
Thanks anyhow for your remarks!
- Tue Jan 22, 2013 9:26 am
- Forum: General Audio Programming
- Topic: are there others developing the same software patches?
- Replies: 5
- Views: 8247
Re: Sending in a modified Repair.cpp and about further plans
Any patches have to be submitted to audacity-devel mailing list as per http://wiki.audacityteam.org/wiki/SubmittingPatches until you become an established developer. No developers read this Forum. Gale Thanks for the link Gale, didn't know. Contributing to open software appears much more complex th...
- Sun Jan 20, 2013 12:06 pm
- Forum: General Audio Programming
- Topic: are there others developing the same software patches?
- Replies: 5
- Views: 8247
are there others developing the same software patches?
In order to become familiar with the code and structure of Audacity and of wxWidgets, I started simply and added a small modification to Repair.cpp, of which the main purpose was to clarify about that unnecessary 128 sample restriction. I widend it to 150 as to remove any suggestion that a power of ...
- Sat Jan 12, 2013 8:09 pm
- Forum: General Audio Programming
- Topic: why arepairs of damaged audio restricted to 128 samples max?
- Replies: 4
- Views: 8034
Re: why arepairs of damaged audio restricted to 128 samples
In repair.cpp -> EffectRepair::Process() the repairLen is restricted to a maximum of 128 samples. Change it to for example 512 samples and see how long Repair takes then. Gale OK, Gale, so there is an almost cubic relation between repairlen and processing time, due to the use of matrices. However t...
- Sat Jan 12, 2013 11:56 am
- Forum: General Audio Programming
- Topic: why arepairs of damaged audio restricted to 128 samples max?
- Replies: 4
- Views: 8034
why arepairs of damaged audio restricted to 128 samples max?
In repair.cpp -> EffectRepair::Process() the repairLen is restricted to a maximum of 128 samples.
The applied Least Squares AutoRegressive Interpolation method imposes no theoretical maximum.
So does anybody know where else this maximum stems from and why a power of 2?
Thanks, jerome42
The applied Least Squares AutoRegressive Interpolation method imposes no theoretical maximum.
So does anybody know where else this maximum stems from and why a power of 2?
Thanks, jerome42
- Fri Jan 11, 2013 2:11 pm
- Forum: Windows
- Topic: removing scratches from old vynal recordings
- Replies: 8
- Views: 2737
Re: removing scratches from old vynal recordings
it must be possible to write software that automatically does what my eyes can do: detect and draw-repair those cracks without introducing new impairments. I assume you found Effect > Repair (limited to 128 samples). What Audacity lacks at the moment is high quality click detection (and of course a...
- Fri Jan 11, 2013 11:28 am
- Forum: Windows
- Topic: removing scratches from old vynal recordings
- Replies: 8
- Views: 2737
Re: removing scratches from old vynal recordings
Yes, I dropped my own two-years old win32 C++ project to automatically remove clicks and cracks from my old vinyls after finding Brian Davies' ClickRepair. In the last 2 years I tried numerous methods for automatic crack detection, in the time- as well as in the freq. domain (FFT), but couldn't find...