We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b43ab commit aaf4f5bCopy full SHA for aaf4f5b
src/angular-app/bellows/shared/audio-recorder/audio-recorder.component.ts
@@ -88,7 +88,8 @@ export class AudioRecorderController implements angular.IController {
88
//Stopping the media stream tracks releases the red recording indicator from browser tabs
89
this.mediaRecorder.addEventListener("stop",
90
() => {
91
- stream.getTracks().forEach(function(track) {
+ stream.getTracks().forEach(function (track) {
92
+ console.log('Sample rate', track.getSettings().sampleRate);
93
track.stop();
94
});
95
}
0 commit comments