Re: Really fast (50x) playback speed possible?
Posted: Thu Sep 15, 2011 1:32 am
I am something of a programmer and have made this modification to my local version of Audacity. You only need to make a tiny change in the code:steve wrote:That's one of the beauties of open source software. If you know a bit about programming you're free to modify it to suit your own requirements.ttcheng wrote:Should I think about modifying the transcription toolbar and playback speed code?
Unfortunately I don't think that I'll be able to help with that as I'm not a programmer
srcwidgetsASlider.cpp at or near line #394
Code: Select all
line 364: void LWSlider::SetStyle(int style)
{
[...]
case SPEED_SLIDER:
mMinValue = SPEED_MIN;
line 394: mMaxValue = 8.0f;//efm5 I like more available speed;
mStepValue = STEP_CONTINUOUS;
break;
[...]
Code: Select all
mMaxValue = 50.0f;