Skip to content

Commit

Permalink
Update streamer options
Browse files Browse the repository at this point in the history
  • Loading branch information
longnguyen2004 committed Feb 5, 2025
1 parent e63d1e6 commit 43db32a
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,21 @@ height?: number;
*/
fps?: number;
/**
* Video output bitrate in kbps
* Video average bitrate in kbps
*/
bitrateKbps?: number;
maxBitrateKbps?: number;
bitrateVideo?: number;
/**
* Video max bitrate in kbps
*/
bitrateVideoMax?: number;
/**
* Audio bitrate in kbps
*/
bitrateAudio?: number;
/**
* Enable audio output
*/
includeAudio?: boolean;
/**
* Enables hardware accelerated video decoding. Enabling this option might result in an exception
* being thrown by Ffmpeg process if your system does not support hardware acceleration
Expand Down Expand Up @@ -227,6 +238,10 @@ rtcpSenderReportEnabled?: boolean;
* ChaCha20-Poly1305 Encryption is faster than AES-256-GCM, except when using AES-NI
*/
forceChacha20Encryption?: boolean;
/**
* Custom headers for HTTP requests
*/
customHeaders?: Record<string, string>
```

## Running example
Expand Down

0 comments on commit 43db32a

Please sign in to comment.