(Synced Lyrics) Does track length affect the insertion of synchronized Lyrics? #2333
-
Does anyone know, if track length affects the insertion of synchronized Lyrics? |
Beta Was this translation helpful? Give feedback.
Answered by
ArjixWasTaken
Aug 4, 2024
Replies: 1 comment 4 replies
-
yes it does |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The code picks the lyrics result that is closest to the track's duration.
https://github.com/th-ch/youtube-music/blob/master/src/plugins/synced-lyrics/renderer/lyrics/fetch.ts#L139-L152
If the difference from the closest result to the track's duration is more than 15 seconds it doesn't insert lyrics
https://github.com/th-ch/youtube-music/blob/master/src/plugins/synced-lyrics/renderer/lyrics/fetch.ts#L156
if the difference is more than 5, but less than 15, it shows a warning that the timings may not be accurate
https://github.com/th-ch/youtube-music/blob/master/src/plugins/synced-lyrics/renderer/lyrics/fetch.ts#L157