admin管理员组文章数量:1024016
I have been reading the Kinesis Video Stream documentation (Javascript) for a few days now I can't figure out how to send my video? I also read the Kinesis documentation plus firehose, but no luck.
I have already created the stream with createStream()
API.
Param:
var params = {
APIName: "PUT_MEDIA",
StreamName: streamName
};
getDataEndpoint():
In order to write data.
kinesisVideo.getDataEndpoint(params,function(err,data){
if(err)
console.log(err,err.stack);
else{
console.log(data);
// How to Send DATA?
}
});
I have been reading the Kinesis Video Stream documentation (Javascript) for a few days now I can't figure out how to send my video? I also read the Kinesis documentation plus firehose, but no luck.
I have already created the stream with createStream()
API.
Param:
var params = {
APIName: "PUT_MEDIA",
StreamName: streamName
};
getDataEndpoint():
In order to write data.
kinesisVideo.getDataEndpoint(params,function(err,data){
if(err)
console.log(err,err.stack);
else{
console.log(data);
// How to Send DATA?
}
});
Share
Improve this question
asked Apr 26, 2019 at 19:34
Brian NezhadBrian Nezhad
6,28610 gold badges47 silver badges70 bronze badges
1
- Normally you would use one of the producer SDKs but there is no JavaScript producer SDK afaik. Perhaps you could write this one ponent of your app in one of the supported languages. – jarmod Commented Apr 26, 2019 at 19:58
1 Answer
Reset to default 6The easiest way is to use the GStreamer plugin
Alternatively you can use the producer SDKS for Java, Android, or C++
I have been reading the Kinesis Video Stream documentation (Javascript) for a few days now I can't figure out how to send my video? I also read the Kinesis documentation plus firehose, but no luck.
I have already created the stream with createStream()
API.
Param:
var params = {
APIName: "PUT_MEDIA",
StreamName: streamName
};
getDataEndpoint():
In order to write data.
kinesisVideo.getDataEndpoint(params,function(err,data){
if(err)
console.log(err,err.stack);
else{
console.log(data);
// How to Send DATA?
}
});
I have been reading the Kinesis Video Stream documentation (Javascript) for a few days now I can't figure out how to send my video? I also read the Kinesis documentation plus firehose, but no luck.
I have already created the stream with createStream()
API.
Param:
var params = {
APIName: "PUT_MEDIA",
StreamName: streamName
};
getDataEndpoint():
In order to write data.
kinesisVideo.getDataEndpoint(params,function(err,data){
if(err)
console.log(err,err.stack);
else{
console.log(data);
// How to Send DATA?
}
});
Share
Improve this question
asked Apr 26, 2019 at 19:34
Brian NezhadBrian Nezhad
6,28610 gold badges47 silver badges70 bronze badges
1
- Normally you would use one of the producer SDKs but there is no JavaScript producer SDK afaik. Perhaps you could write this one ponent of your app in one of the supported languages. – jarmod Commented Apr 26, 2019 at 19:58
1 Answer
Reset to default 6The easiest way is to use the GStreamer plugin
Alternatively you can use the producer SDKS for Java, Android, or C++
本文标签: javascriptHow do I send Video data into Kinesis Video StreamStack Overflow
版权声明:本文标题:javascript - How do I send Video data into Kinesis Video Stream? - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745520520a2154295.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论