1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
# obs-cli
[](https://github.com/muesli/obs-cli/releases)
[](https://github.com/muesli/obs-cli/actions)
[](https://goreportcard.com/report/muesli/obs-cli)
[](https://pkg.go.dev/github.com/muesli/obs-cli)
OBS-cli is a command-line remote control for OBS. It requires the
[obs-websocket](https://github.com/Palakis/obs-websocket) plugin to be installed
on your system.
## Installation
### Packages & Binaries
On Arch Linux you can simply install the package from the AUR:
yay -S obs-cli
Or download a binary from the [releases](https://github.com/muesli/obs-cli/releases)
page. Linux (including ARM) binaries are available, as well as Debian and RPM
packages.
### Build From Source
Alternatively you can also build `obs-cli` from source. Make sure you have a
working Go environment (Go 1.11 or higher is required). See the
[install instructions](https://golang.org/doc/install.html).
To install obs-cli, simply run:
go install github.com/muesli/obs-cli@latest
## Usage
All commands support the following flags:
- `--host`: which OBS instance to connect to
- `--port`: port to connect to
- `--password`: password used for authentication
### Streams
Change the streaming state:
```
obs-cli stream start
obs-cli stream stop
obs-cli stream toggle
```
Display streaming status:
```
obs-cli stream status
```
### Recordings
Change the recording state:
```
obs-cli recording start
obs-cli recording stop
obs-cli recording toggle
```
Pause or resume a recording:
```
obs-cli recording pause enable
obs-cli recording pause resume
obs-cli recording pause toggle
```
Display recording status:
```
obs-cli recording status
```
### Scenes
List all scene names:
```
obs-cli scene list
```
Switch program to a scene:
```
obs-cli scene current <scene>
```
Switch preview to a scene (studio mode must be enabled):
```
obs-cli scene preview <scene>
```
Switch program (studio mode disabled) or preview (studio mode enabled) to a scene:
```
obs-cli scene switch <scene>
```
### Scene Collections
List all scene collections:
```
obs-cli scenecollection list
```
Show the current scene collection:
```
obs-cli scenecollection get
```
Switch to a scene collection:
```
obs-cli scenecollection set <scenecollection>
```
### Scene Items
List all items of a scene:
```
obs-cli sceneitem list <scene>
```
Change the visibility of a scene-item:
```
obs-cli sceneitem show <scene> <item>
obs-cli sceneitem hide <scene> <item>
obs-cli sceneitem toggle <scene> <item>
```
Center a scene-item horizontally:
```
obs-cli sceneitem center <scene> <item>
```
### Labels
Change a FreeType text label:
```
obs-cli label text <label> <text>
```
Trigger a countdown and continuously update a label with the remaining time:
```
obs-cli label countdown <label> <duration>
```
### Sources
List special sources:
```
obs-cli source list
```
Toggle mute status of a source:
```
obs-cli source toggle-mute <source>
```
### Studio Mode
Enable or disable Studio Mode:
```
obs-cli studiomode enable
obs-cli studiomode disable
obs-cli studiomode toggle
```
Display studio mode status:
```
obs-cli studiomode status
```
Transition to program (when the studio mode is enabled):
```
obs-cli studiomode transition
```
### Profiles
List all profiles:
```
obs-cli profile list
```
Show the current profile:
```
obs-cli profile get
```
Switch to a profile:
```
obs-cli profile set <profile>
```
### Virtual Camera
Change the virtual camera state:
```
obs-cli virtualcam start
obs-cli virtualcam stop
obs-cli virtualcam toggle
```
Display virtual camera status:
```
obs-cli virtualcam status
```
|