View Single Post

Old 08-27-2009, 06:25 PM   #24
Jeff Paine
I CAN FRY
 
Jeff Paine's Avatar
 
Jeff Paine is offline
Join Date: Jun 2006
Location: Orlando, FL, USA
Donated: $100 ?
Posts: 896
Marketplace Rating: 1
Send a message via PM  to Jeff Paine
Jeff Paine

Default

If the video is too early, add extra 00's to the command, like this:

Code:
#00004:0001
That will start it halfway through the measure

Code:
#00004:00010000
That will start it 1/4 through the measure

etc, just play around with it

If it's starting too late, that's a little trickier. The easiest way to do this would be to add this command:

Code:
#00002:2
which, in this case, will make the first measure last twice as long as normal.

This is fine if there's no other notes in the first measure, however, if there are notes in the first measure, you'll have to pad every command in the measure with extra 00's at the beginning for everything to sync up.

This is pretty easy if you're doubling the first measure like the above example, in which case you just double the notes in the first measure by padding each command with 00's at the beginning. Otherwise you'll have to do some math and/or play with it to get it to sync up, which can be a huge pain in the ass if the video starts at a weird time.
  Reply With Quote