Closed ChernyshovYuriy closed 7 years ago
608 is text. ID3 is metadata. So this looks like it's working as intended to me?
https://en.wikipedia.org/wiki/EIA-608
I was of the opinion that Closed Caption belongs to metadata renderer, am I wrong?
Also, using ExoPlayer framework:
MimeTypes.isApplication(trackFormat.sampleMimeType))
for "mimeType=application/cea-608" returns True, which makes me feel confused now.
I was of the opinion that Closed Caption belongs to metadata renderer, am I wrong?
Yes ;). This has never been the case. Closed captions have always been considered text.
for "mimeType=application/cea-608" returns True, which makes me feel confused now.
This is just returning whether the mime type starts with "application". Which it does.
Ok, thanks for clarification :-)
Hi colleagues,
I have a doubt related type of the renderer that ExoPlayer provide for the given url:
Here is log trace:
The confusion is - why "mimeType=application/cea-608" and "mimeType=application/id3" are sits in different renderer types? Are those two should be in the same renderer that relates to Metadata tendering? As consequence, I am seeing "Text" button on top of the video indicating that there is Subtitle Track, which is wrong, again, because both of those tracks are belongs to closed caption. Is this something wrong with Playlist / ExoPlayer / or is it my understanding that is wrong?
Thanks a lot in advance.