Source: lib/text/srt_text_parser.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.text.SrtTextParser');
  7. goog.require('goog.asserts');
  8. goog.require('shaka.text.TextEngine');
  9. goog.require('shaka.text.VttTextParser');
  10. goog.require('shaka.util.BufferUtils');
  11. goog.require('shaka.util.StringUtils');
  12. /**
  13. * @implements {shaka.extern.TextParser}
  14. * @export
  15. */
  16. shaka.text.SrtTextParser = class {
  17. /** */
  18. constructor() {
  19. /**
  20. * @type {!shaka.extern.TextParser}
  21. * @private
  22. */
  23. this.parser_ = new shaka.text.VttTextParser();
  24. }
  25. /**
  26. * @override
  27. * @export
  28. */
  29. parseInit(data) {
  30. goog.asserts.assert(false, 'SRT does not have init segments');
  31. }
  32. /**
  33. * @override
  34. * @export
  35. */
  36. setSequenceMode(sequenceMode) {
  37. // Unused.
  38. }
  39. /**
  40. * @override
  41. * @export
  42. */
  43. parseMedia(data, time) {
  44. const SrtTextParser = shaka.text.SrtTextParser;
  45. const BufferUtils = shaka.util.BufferUtils;
  46. const StringUtils = shaka.util.StringUtils;
  47. // Get the input as a string.
  48. const str = StringUtils.fromUTF8(data);
  49. const vvtText = SrtTextParser.srt2webvtt(str);
  50. const newData = BufferUtils.toUint8(StringUtils.toUTF8(vvtText));
  51. return this.parser_.parseMedia(newData, time);
  52. }
  53. /**
  54. * Convert a SRT format to WebVTT
  55. *
  56. * @param {string} data
  57. * @return {string}
  58. * @export
  59. */
  60. static srt2webvtt(data) {
  61. const SrtTextParser = shaka.text.SrtTextParser;
  62. let result = 'WEBVTT\n\n';
  63. // Supports no cues
  64. if (data == '') {
  65. return result;
  66. }
  67. // remove dos newlines
  68. let srt = data.replace(/\r+/g, '');
  69. // trim white space start and end
  70. srt = srt.trim();
  71. // get cues
  72. const cuelist = srt.split('\n\n');
  73. for (const cue of cuelist) {
  74. result += SrtTextParser.convertSrtCue_(cue);
  75. }
  76. return result;
  77. }
  78. /**
  79. * Convert a SRT cue into WebVTT cue
  80. *
  81. * @param {string} caption
  82. * @return {string}
  83. * @private
  84. */
  85. static convertSrtCue_(caption) {
  86. const lines = caption.split(/\n/);
  87. // detect and skip numeric identifier
  88. if (lines[0].match(/\d+/)) {
  89. lines.shift();
  90. }
  91. // convert time codes
  92. lines[0] = lines[0].replace(/,/g, '.');
  93. return lines.join('\n') + '\n\n';
  94. }
  95. };
  96. shaka.text.TextEngine.registerParser(
  97. 'text/srt', () => new shaka.text.SrtTextParser());