mirror of
https://github.com/onyx-and-iris/gobs-cli.git
synced 2026-04-18 07:03:37 +00:00
Compare commits
3 Commits
add-settin
...
v0.16.2
| Author | SHA1 | Date | |
|---|---|---|---|
| f84908f668 | |||
| 3ffdf668ff | |||
| 6e37c2c6c7 |
@@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
# [0.15.0] - 2026-01-26
|
# [0.16.2] - 2026-01-26
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- new subcommands added to input, see [InputCmd](https://github.com/onyx-and-iris/gobs-cli?tab=readme-ov-file#inputcmd)
|
- new subcommands added to input, see [InputCmd](https://github.com/onyx-and-iris/gobs-cli?tab=readme-ov-file#inputcmd)
|
||||||
|
- settings command group, see [SettingsCmd](https://github.com/onyx-and-iris/gobs-cli?tab=readme-ov-file#settingscmd)
|
||||||
|
|
||||||
# [0.14.1] - 2025-07-14
|
# [0.14.1] - 2025-07-14
|
||||||
|
|
||||||
|
|||||||
15
README.md
15
README.md
@@ -725,7 +725,7 @@ gobs-cli projector open --monitor-index=1 "test_group"
|
|||||||
gobs-cli screenshot save --width=2560 --height=1440 "Scene" "C:\Users\me\Videos\screenshot.png"
|
gobs-cli screenshot save --width=2560 --height=1440 "Scene" "C:\Users\me\Videos\screenshot.png"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Settings
|
### SettingsCmd
|
||||||
|
|
||||||
- show: Show settings.
|
- show: Show settings.
|
||||||
- flags:
|
- flags:
|
||||||
@@ -749,20 +749,23 @@ gobs-cli settings profile SimpleOutput VBitrate 6000
|
|||||||
```
|
```
|
||||||
|
|
||||||
- stream-service: Get/Set stream service setting.
|
- stream-service: Get/Set stream service setting.
|
||||||
- args: Type
|
|
||||||
- flags:
|
- flags:
|
||||||
- --key: Stream key.
|
- --key: Stream key.
|
||||||
- --server: Stream server URL.
|
- --server: Stream server URL.
|
||||||
|
|
||||||
|
*optional*
|
||||||
|
- args: Type
|
||||||
|
|
||||||
```console
|
```console
|
||||||
gobs-cli settings stream-service
|
gobs-cli settings stream-service
|
||||||
|
|
||||||
gobs-cli settings stream-service rtmp_common --key='live_xyzxyzxyzxyz'
|
gobs-cli settings stream-service --key='live_xyzxyzxyzxyz' rtmp_common
|
||||||
```
|
```
|
||||||
|
|
||||||
- video: Get/Set video setting.
|
- video: Get/Set video setting.
|
||||||
- flags:
|
- flags:
|
||||||
- --show: Show video settings.
|
|
||||||
|
*optional*
|
||||||
- --base-width: Base (canvas) width.
|
- --base-width: Base (canvas) width.
|
||||||
- --base-height: Base (canvas) height.
|
- --base-height: Base (canvas) height.
|
||||||
- --output-width: Output (scaled) width.
|
- --output-width: Output (scaled) width.
|
||||||
@@ -771,7 +774,7 @@ gobs-cli settings stream-service rtmp_common --key='live_xyzxyzxyzxyz'
|
|||||||
- --fps-den: Frames per second denominator.
|
- --fps-den: Frames per second denominator.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
gobs-cli settings video --show
|
gobs-cli settings video
|
||||||
|
|
||||||
gobs-cli settings video --base-width=1920 --base-height=1080
|
gobs-cli settings video --base-width=1920 --base-height=1080
|
||||||
```
|
```
|
||||||
|
|||||||
10
settings.go
10
settings.go
@@ -189,7 +189,7 @@ func (cmd *SettingsProfileCmd) Run(ctx *context) error {
|
|||||||
|
|
||||||
// SettingsStreamServiceCmd gets/ sets stream service settings.
|
// SettingsStreamServiceCmd gets/ sets stream service settings.
|
||||||
type SettingsStreamServiceCmd struct {
|
type SettingsStreamServiceCmd struct {
|
||||||
Type string `arg:"" help:"Stream type (e.g., rtmp_common, rtmp_custom)." required:""`
|
Type string `arg:"" help:"Stream type (e.g., rtmp_common, rtmp_custom)." optional:""`
|
||||||
Key string ` help:"Stream key." flag:""`
|
Key string ` help:"Stream key." flag:""`
|
||||||
Server string ` help:"Stream server URL." flag:""`
|
Server string ` help:"Stream server URL." flag:""`
|
||||||
}
|
}
|
||||||
@@ -202,7 +202,7 @@ func (cmd *SettingsStreamServiceCmd) Run(ctx *context) error {
|
|||||||
return fmt.Errorf("failed to get stream service settings: %w", err)
|
return fmt.Errorf("failed to get stream service settings: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if cmd.Key == "" && cmd.Server == "" {
|
if cmd.Type == "" {
|
||||||
t := table.New().Border(lipgloss.RoundedBorder()).
|
t := table.New().Border(lipgloss.RoundedBorder()).
|
||||||
BorderStyle(lipgloss.NewStyle().Foreground(ctx.Style.border)).
|
BorderStyle(lipgloss.NewStyle().Foreground(ctx.Style.border)).
|
||||||
Headers("Stream Service Setting", "Value").
|
Headers("Stream Service Setting", "Value").
|
||||||
@@ -219,7 +219,7 @@ func (cmd *SettingsStreamServiceCmd) Run(ctx *context) error {
|
|||||||
return style
|
return style
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Row("Type", cmd.Type)
|
t.Row("Type", resp.StreamServiceType)
|
||||||
t.Row("Key", resp.StreamServiceSettings.Key)
|
t.Row("Key", resp.StreamServiceSettings.Key)
|
||||||
t.Row("Server", resp.StreamServiceSettings.Server)
|
t.Row("Server", resp.StreamServiceSettings.Server)
|
||||||
|
|
||||||
@@ -252,7 +252,6 @@ func (cmd *SettingsStreamServiceCmd) Run(ctx *context) error {
|
|||||||
|
|
||||||
// SettingsVideoCmd gets/ sets video settings.
|
// SettingsVideoCmd gets/ sets video settings.
|
||||||
type SettingsVideoCmd struct {
|
type SettingsVideoCmd struct {
|
||||||
Show bool `flag:"" help:"Show video settings."`
|
|
||||||
BaseWidth int `flag:"" help:"Base (canvas) width." min:"8"`
|
BaseWidth int `flag:"" help:"Base (canvas) width." min:"8"`
|
||||||
BaseHeight int `flag:"" help:"Base (canvas) height." min:"8"`
|
BaseHeight int `flag:"" help:"Base (canvas) height." min:"8"`
|
||||||
OutputWidth int `flag:"" help:"Output (scaled) width." min:"8"`
|
OutputWidth int `flag:"" help:"Output (scaled) width." min:"8"`
|
||||||
@@ -269,7 +268,8 @@ func (cmd *SettingsVideoCmd) Run(ctx *context) error {
|
|||||||
return fmt.Errorf("failed to get video settings: %w", err)
|
return fmt.Errorf("failed to get video settings: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if cmd.Show {
|
if cmd.BaseWidth == 0 && cmd.BaseHeight == 0 && cmd.OutputWidth == 0 &&
|
||||||
|
cmd.OutputHeight == 0 && cmd.FPSNum == 0 && cmd.FPSDen == 0 {
|
||||||
t := table.New().Border(lipgloss.RoundedBorder()).
|
t := table.New().Border(lipgloss.RoundedBorder()).
|
||||||
BorderStyle(lipgloss.NewStyle().Foreground(ctx.Style.border)).
|
BorderStyle(lipgloss.NewStyle().Foreground(ctx.Style.border)).
|
||||||
Headers("Video Setting", "Value").
|
Headers("Video Setting", "Value").
|
||||||
|
|||||||
Reference in New Issue
Block a user