Skip to content

Commit

Permalink
feat: Increase default audio bitrate. (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc authored Oct 25, 2024
1 parent 1308aca commit f709a41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/src/options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,11 @@ class VideoPublishOptions extends PublishOptions {

class AudioPreset {
static const telephone = 12000;
static const speech = 20000;
static const music = 32000;
static const musicStereo = 48000;
static const musicHighQuality = 64000;
static const musicHighQualityStereo = 96000;
static const speech = 24000;
static const music = 48000;
static const musicStereo = 64000;
static const musicHighQuality = 96000;
static const musicHighQualityStereo = 128000;
}

/// Options used when publishing audio.
Expand Down

0 comments on commit f709a41

Please sign in to comment.