Re: [mediacapture-record] Add `audioConstantBitRate` flag to `MediaRecorderOptions`. (#185)

So would everybody be happy with this:

```
enum AudioBitrateMode {
  "cbr",
  "vbr"
};
```
```
dictionary MediaRecorderOptions {
  DOMString mimeType;
  unsigned long audioBitsPerSecond;
  unsigned long videoBitsPerSecond;
  unsigned long bitsPerSecond;
  AudioBitrateMode audioBitrateMode;
};
```

-- 
GitHub Notification of comment by simoncent
Please view or discuss this issue at https://github.com/w3c/mediacapture-record/pull/185#issuecomment-561099362 using your GitHub account

Received on Tuesday, 3 December 2019 10:19:23 UTC