Import Markers offset not added

Discussion forum for Amadeus users

Moderator: Martin Hairer

Post Reply
absurd
Posts: 2
Joined: Fri Feb 14, 2014 1:54 am

Import Markers offset not added

Post by absurd »

Hi,

I use an external python script that adds additional markers (or tracks) into the cuefile that I created with Amadeus Pro via Export Markers.

When I reimport the marker/.cue file into Amadeus Pro, it seems that the

Code: Select all

REM Offset
line is not evaluated by Amadeus Pro.

Here's the snippet from my cuefile:

Code: Select all

TITLE "AlbatroA.wav"
FILE "AlbatroA.wav" WAVE
  TRACK 01 AUDIO
    TITLE "s"
    INDEX 01 00:00:00
    REM COLOR black
  TRACK 02 AUDIO
    TITLE "Er"
    INDEX 01 00:00:03
    REM COLOR black
  TRACK 03 AUDIO
    TITLE "soll"
    INDEX 01 00:00:14
    REM OFFSET 0.003333
    REM COLOR black
The third track is displayed in Amadeus Pro 2.1.5 at 186ms.
The intended value was 190ms.
There are 14 frames, i.e., 186,66...ms (14/75*1000).
It just seems that the offset value of 0.003333 is not added here, as (14/75+0.003333)*1000 would be 189,99ms.

Is this a bug?

Thanks for your help.

absurd
Posts: 2
Joined: Fri Feb 14, 2014 1:54 am

Sorry, my fault.

Post by absurd »

Sorry, after a break of some hours, I looked at the code again and found out that there was an error in it:

It's not (14/75+0.003333)*1000 but (14/75*1000+0.003333*1000) which indeed equals 189.99966666666668 (190ms).
I just didn't realize that the offset is given in ms in cuesheet syntax.

Post Reply