5

使用 Host.processMetadata() 获取视频流中的 ID3 标签。它说这是一个 Uint8Array 但我不知道如何正确解码。我在用:

new TextDecoder("utf-8").decode(data);

然而,这并没有正确解码数据。我如何获取数据?

参考:https ://developers.google.com/cast/docs/reference/player/cast.player.api.Host#processMetadata

4

2 回答 2

2

这是我解决它的方法(由谷歌的人推荐)

customReceiver.mediaHost.processMetadata = function (type, data, timestamp) {    
  var id3 = new TextDecoder("utf-8").decode(data.subarray(10));
  id3 = id3.replace(/\u0000/g, '');
  var id3Final;
  var id3Data = {
    type: 'meta',
    metadata: {}
  };
  if (id3.indexOf('TIT2') !== -1) {
    id3Final = id3.substring(5);
    id3Data.metadata.title = id3Final.substring(1);
    id3Data.metadata.TIT2 = id3Final;
  } else {
    id3Final = id3.substring(5);
    id3Data.metadata.TIT3 = id3Final;
  }
  ...
};
于 2017-07-13T18:51:08.777 回答
1

我知道这已经晚了,但我遇到了同样的问题,这就是我处理它以从 id3 标签获取 TIT2 字符串的方式:

// Receives and broadcasts TIT2 messages 
myCustomPlayer.CastPlayer.prototype.processMetadata_ = function(type, data, timestamp) {
  var id3String = String.fromCharCode.apply(null, data);
  if (type === 'ID3' && /TIT2/.test(id3String)) {
    this.someMessageBus_.broadcast(JSON.stringify({
      id3Tag: id3String.split('|')[1]
    }));
  }
}
于 2017-07-12T17:14:05.183 回答