使用Web RTS服务如何获取当前视频的实时码率/传输速率? 请问有提供对应的API可以使用嘛。 如果没有请问是否有其他方法可以获取视频的实时码率或者传输速率
在阿里云视频直播中使用 Web RTS 服务,可以通过调用 Web RTS SDK 中的 API 获取当前视频的实时码率和传输速率。
Web RTS SDK 提供了多个 API 来获取视频码率和传输速率,其中最常用的是 getVideoStats() 方法,该方法可以返回一个包含视频码率和传输速率等信息的对象。
onStatistics
事件来获取视频 track 的实时码率、传输速率等统计信息。示例代码如下:var client = AgoraRTC.createClient({mode: 'live', codec: 'h264'});
// ...
client.on('stream-published', function(evt){
console.log('Publish local stream successfully');
});
client.on('stream-added', function(evt){
console.log('New stream added: ' + evt.stream.getId());
// Subscribe to the remote stream
client.subscribe(evt.stream, function(err){
console.log('Failed to subscribe to remote stream with error ' + err);
});
});
client.on('stream-subscribed', function(evt){
var stream = evt.stream;
console.log('Subscribe remote stream successfully: ' + stream.getId());
// Play the remote stream
stream.play('remote-video');
// Listen to the "onStatistics" event to get the statistics information
stream.getVideoTrack().on('onStatistics', function(statistics) {
console.log('Video track statistics:', statistics);
console.log('Video track bitrate:', statistics.bitrate);
console.log('Video track framesPerSecond:', statistics.framesPerSecond);
console.log('Video track packetLossRate:', statistics.packetLossRate);
// ...
});
});
client.init(appId, function(){
console.log('AgoraRTC client initialized');
client.join(null, channelName, null, function(uid){
console.log('User ' + uid + ' join channel successfully');
// Create a local stream
var localStream = AgoraRTC.createStream({video: true, audio: false});
// Publish the local stream
client.publish(localStream, function(err){
console.log('Failed to publish local stream with error: ' + err);
});
// Play the local stream
localStream.play('local-video');
});
}, function(err){
console.log('Failed to initialize AgoraRTC client with error: ' + err);
});
在上面的代码中,我们通过
stream.getVideoTrack()
获取到视频 track,并监听了其onStatistics
事件。当该事件触发时,我们可以通过statistics
参数来获取到视频的实时码率、传输速率等统计信息。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。