Add bitRate & sampleRate

This commit is contained in:
Gennady Grishkovtsov
2018-12-31 12:48:07 +03:00
parent 87f9703529
commit 7fdf3f745b
5 changed files with 18 additions and 5 deletions

View File

@@ -260,6 +260,9 @@
attempts : { type: Number },
time : { type: Number },
bitRate : { type: Number, default: 128 },
sampleRate : { type: Number, default: 44100 },
showDownloadButton : { type: Boolean, default: true },
showUploadButton : { type: Boolean, default: true },
@@ -343,7 +346,9 @@
beforeRecording : this.beforeRecording,
afterRecording : this.afterRecording,
pauseRecording : this.pauseRecording,
micFailed : this.micFailed
micFailed : this.micFailed,
bitRate : this.bitRate,
sampleRate : this.sampleRate
})
}
},