The VTT generated by AMS v3 has some “NOTE” in the top of the vtt file. Edge and IE11 Browsers are complaining about it. It throws below parsing error. Same VTT files works fine in Chrome and firefox.
MEDIA12608: WebVTT Text Track: Timestamp signature should be '-->'. hr=80004004.
If we remove the following “NOTE” from top, the same vtt works fine on Edge and IE11.
NOTE
duration:"00:10:07.0110000"
language:en-US
NOTE Confidence: 0.911574065685272
It seems like multiple line comment is causing problem here. Below are different permutations I've tried cases where we get errors. In 1st and 3rd case I'm getting error but in 2nd and 4th case I'm not getting any error. So it seems like if we are having multiline comment in VTT file Edge and IE11 is throwing error.
1.
WEBVTT
NOTE duration:”00:10:07.0110000” language:en-US
NOTE Confidence: 0.911574065685272
2.
WEBVTT
NOTE Confidence: 0.911574065685272
3.
WEBVTT
NOTE duration:"00:10:07.0110000" language:en-US
NOTE Confidence: 0.911574065685272
4.
WEBVTT
NOTE duration:"00:10:07.0110000"
NOTE language:en-US
NOTE Confidence: 0.911574065685272
Please let me know if someone have nny suggestions or work around to fix the issue in Edge and IE11?