Lyrik Project Forum

 
Please login or register.

Author Topic: Easier way to synchronize lyrics  (Read 824 times)

WooshaQ

  • Newbie
  • *
  • Posts: 1
  • Karma: 0
    • View Profile
Easier way to synchronize lyrics
« on: March 12, 2009, 08:55:56 PM »
I would like to have a feature allowing to slow down the music tempo by 50% in edit mode, this would allow to make lyrics more accurate! Is such a feature possible to make?

Magus

  • Administrator
  • Hero Member
  • *****
  • Posts: 120
  • Karma: 4
    • View Profile
    • Lyrik Project
Re: Easier way to synchronize lyrics
« Reply #1 on: March 13, 2009, 01:06:54 AM »
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 DSP
3 - Click Configure active plug-in
4 - Load the present justin - simple pitch and tempo (half-2x) control*
5 - Check Enable processing
6 - Use the scroll bar :cool:

* If you don't find that present, try Show editor and try this configs;
Initialization/format change:
Code: [Select]
pos=0;
Slider change/initialization:
Code: [Select]
speedup=0.5/(slider1-0.5);
slowdwn=0.5/(0.5-slider1);

Per sample (or sample-pair):
Code: [Select]
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 :good:

jeanlery13

  • Newbie
  • *
  • Posts: 1
  • Karma: 0
    • View Profile
Re: Easier way to synchronize lyrics
« Reply #2 on: August 02, 2010, 08:15:05 AM »
It make sense to have more synchronize lyrics easier. Though I would also prefer to have the accurate features in which we could be able to slow down the music tempo of the song 50% in mode. It may be preferable so that we can have the lyrics clearly.

 

Powered by SMF 2.0 RC3 | SMF © 2006–2010, Simple Machines LLC
ModernDark64 design by BlocWeb