mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 01:35:22 +03:00
Enable force_audio by default
This commit is contained in:
parent
3a8693380b
commit
6e07fcb7e4
@ -354,7 +354,7 @@ restream:
|
|||||||
# Optional: Enable the restream (default: True)
|
# Optional: Enable the restream (default: True)
|
||||||
enabled: True
|
enabled: True
|
||||||
# Optional: Force audio compatibility with browsers (default: shown below)
|
# Optional: Force audio compatibility with browsers (default: shown below)
|
||||||
force_audio: False
|
force_audio: True
|
||||||
# Optional: jsmpeg stream configuration for WebUI
|
# Optional: jsmpeg stream configuration for WebUI
|
||||||
jsmpeg:
|
jsmpeg:
|
||||||
# Optional: Set the height of the jsmpeg stream. (default: 720)
|
# Optional: Set the height of the jsmpeg stream. (default: 720)
|
||||||
|
|||||||
@ -536,7 +536,7 @@ class JsmpegStreamConfig(FrigateBaseModel):
|
|||||||
class RestreamConfig(FrigateBaseModel):
|
class RestreamConfig(FrigateBaseModel):
|
||||||
enabled: bool = Field(default=True, title="Restreaming enabled.")
|
enabled: bool = Field(default=True, title="Restreaming enabled.")
|
||||||
force_audio: bool = Field(
|
force_audio: bool = Field(
|
||||||
default=False, title="Force audio compatibility with the browser."
|
default=True, title="Force audio compatibility with the browser."
|
||||||
)
|
)
|
||||||
jsmpeg: JsmpegStreamConfig = Field(
|
jsmpeg: JsmpegStreamConfig = Field(
|
||||||
default_factory=JsmpegStreamConfig, title="Jsmpeg Stream Configuration."
|
default_factory=JsmpegStreamConfig, title="Jsmpeg Stream Configuration."
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user