Hello,
Hmm, I do not figure out how to do it directly from Lyrik...
But you can do that using DSP effects:
1 - Goto Winamp > Options > Preferences > Plug-ins > DSP/Effect
2 - Select
Nullsoft Signal Processing Studio DSP3 - Click
Configure active plug-in4 - Load the present
justin - simple pitch and tempo (half-2x) control*
5 - Check
Enable processing6 - Use the scroll bar

* If you don't find that present, try
Show editor and try this configs;
Initialization/format change:
pos=0;Slider change/initialization:
speedup=0.5/(slider1-0.5);
slowdwn=0.5/(0.5-slider1);Per sample (or sample-pair):
if(above(slider1,0.5),
// speedup
assign(skip,above(pos,speedup))
,
// slow down
assign(repeat,above(pos,slowdwn))
);
pos=if(skip,pos-speedup,pos);
pos=if(repeat,pos-slowdwn,pos);
pos=pos+bnot(bor(skip,repeat));See ya
