Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Warblefly authored Mar 12, 2022
1 parent df6bf16 commit 92b20ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cue_playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def analyse(filename, volDrop, volStart=40, mezzanine=None, forceEncode=False):
else:
print("We are NOT adding metadata to any file.")

return({"start_next": max(duration-nextTime), "cue_point": cueTime, "duration": duration, \
return({"start_next": max(duration-nextTime,0), "cue_point": cueTime, "duration": duration, \
"loudness": loudness, "mezzanine_name": mezzanineName,
"longtail": longTail})

Expand Down

0 comments on commit 92b20ab

Please sign in to comment.