现在,我正在Amazon Kinesis Video Streams的客户端上,使用video.js和http-streaming来显示视频。
但是,在流服务器上,每个片段都有一些元数据(仅文本)(如此链接:https://aws.amazon.com/about-aws/whats-new/2018/10/kinesis-video-streams-fragment-level-metadata-support/)。
我不知道如何使用AWSJavaScriptSDK(例如:https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/KinesisVideoMedia.html)获取此数据。
我已经使用getMedia函数进行了测试,但是它没有按预期工作(只是一次获取媒体信息,而不是每个片段)
var kinesisvideomedia = new AWS.KinesisVideoMedia({
//apiVersion: '2017-09-30',
region: options.region,
accessKeyId: options.accessKeyId,
secretAccessKey: options.secretAccessKey,
endpoint: response.DataEndpoint
});
// 3. Create the parameters for getMedia()
var mopts = {
StartSelector: {
StartSelectorType: 'EARLIEST'
},
StreamName: streamName
};
kinesisvideomedia.getMedia(mopts, function (error, vmresp) {
if (error) {
console.log(error);
}
//console.log(vmresp);
});
非常感谢您的支持!
答案 0 :(得分:0)
您的参数仅告诉getMedia从流中获取最早的片段。如果要获取以下所有片段,则必须在对getMedia进行其他调用时使用从上一次对getMedia的调用的响应中返回的ContinuationToken。
关于片段级别的元数据,您需要使用this example来解析响应有效负载,例如在video streams parser library中进行解析