Closed mkochman closed 1 month ago
Hi,
Thanks for the issue.
So far I have locally created PR with that change but I cannot push it to repo.
PRs from people outside an organization is kind of awkward on GitHub, you have to fork the project (e.g. through GitHub's interface), and open the PR from there (your fork). GitHub will propose a base on which the update should be merged, and by default it will select the base project (this one).
Thank you ;)
Hi, in project we use
stpp.ttml
codec for text trackers and I see that in RxPlayer code this direct string is not recognized.switch (codecs.toLowerCase()) { case "stpp": // stpp === TTML in MP4 case "stpp.ttml.im1t": return "ttml"; case "wvtt": // wvtt === WebVTT in MP4 return "vtt"; }
So far I have created forked code with added
stpp.ttml
and pushed it on cdn, it seems to work as expected. I would appreciate it ifstpp.ttml
parsing was added to the main package of RxPlayer by default.So far I have locally created PR with that change but I cannot push it to repo.