bbc / bigscreen-player

Simplified media playback for bigscreen devices
https://bbc.github.io/bigscreen-player/
Apache License 2.0
88 stars 20 forks source link

Do not use string.split on non-segmented subtitles #337

Closed edmorrish closed 6 months ago

edmorrish commented 6 months ago

📺 What

Due to a performance issue running string.split on large subtitle segments, replace the use of string.split with a more efficient replacement.

🛠 How

Replace string.split with alternative use of string.replace.