File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -403,8 +403,6 @@ export default {
403
403
textareaCursorPosition: null ,
404
404
recorder: this .initRecorder (),
405
405
isRecording: false ,
406
- bitRate: 128 ,
407
- sampleRate: 44100 ,
408
406
format: ' mp3'
409
407
}
410
408
},
@@ -843,10 +841,7 @@ export default {
843
841
beforeRecording: null ,
844
842
afterRecording: null ,
845
843
pauseRecording: null ,
846
- micFailed: this .micFailed ,
847
- bitRate: this .bitRate ,
848
- sampleRate: this .sampleRate ,
849
- format: this .format
844
+ micFailed: this .micFailed
850
845
})
851
846
},
852
847
micFailed () {
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ export default class {
10
10
this . micFailed = options . micFailed
11
11
12
12
this . encoderOptions = {
13
- bitRate : options . bitRate ,
14
- sampleRate : options . sampleRate
13
+ bitRate : 128 ,
14
+ sampleRate : 44100
15
15
}
16
16
17
17
this . bufferSize = 4096
You can’t perform that action at this time.
0 commit comments