We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
初めまして。 以前よりソースを参考にさせていただいています、ありがとうございます。
chromeのstat.idに入る文字列の規則が変更になっていたようで、 最初の配列におさめる箇所のロジックが機能しなくなっていました。
こちらでは、typeの文字列を基準にするように変更しました。 script.js getRTCStats関数の箇所です。 例一部) 212行目
if(stat.id.indexOf('RTCTransport') !== -1){ ↓ if(stat.type === 'transport') {
215行目 if(stat.id.indexOf('RTCIceCandidatePair') !== -1){ ↓ if(stat.type === 'candidate-pair'){
227行目 if(stat.id.indexOf('RTCOutboundRTPAudioStream') !== -1){ ↓ if((stat.type === 'outbound-rtp') && (stat.kind === 'audio')){
などです、一部だけで恐縮です。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
初めまして。
以前よりソースを参考にさせていただいています、ありがとうございます。
chromeのstat.idに入る文字列の規則が変更になっていたようで、
最初の配列におさめる箇所のロジックが機能しなくなっていました。
こちらでは、typeの文字列を基準にするように変更しました。
script.js
getRTCStats関数の箇所です。
例一部)
212行目
if(stat.id.indexOf('RTCTransport') !== -1){
↓
if(stat.type === 'transport') {
215行目
if(stat.id.indexOf('RTCIceCandidatePair') !== -1){
↓
if(stat.type === 'candidate-pair'){
227行目
if(stat.id.indexOf('RTCOutboundRTPAudioStream') !== -1){
↓
if((stat.type === 'outbound-rtp') && (stat.kind === 'audio')){
などです、一部だけで恐縮です。
The text was updated successfully, but these errors were encountered: