CUE SHEET SHORTENS FILE LENGTH #3995
glenbuck1
started this conversation in
User Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using Liquidsoap 2.2.5, I'm playing a file whose length is 120:03 mins; however, after running it via Liquidsoap, it ends after 119:00 mins, ie it's a minute shorter than it should be which, obviously, results in a minute of silence before the next scheduled event begins.
Does anyone have an explanation, please, based on the code below.
def disable_fades(metadata)
fades = [
("liq_fade_in", "0"),
("liq_fade_out", "0")
]
list.append(fades, metadata)
end
CueStandard="/home/radio/firepit/StandardTime240626.cue"
StandardTime=mksafe(normalize(playlist(CueStandard, loop=false, mode="normal")))
StandardTime = metadata.map(disable_fades, StandardTime)
Thanks
Beta Was this translation helpful? Give feedback.
All reactions