39 lines
896 B
Markdown
39 lines
896 B
Markdown
# Video Streaming Proof of Concept
|
|
|
|
This project is a demo for streaming video output from multiple "client" devices to one "server". This is a basic demo
|
|
of what sauron-cv seeks to accomplish.
|
|
|
|
## Building
|
|
|
|
This project uses Meson for build management.
|
|
|
|
### Install Dependencies
|
|
|
|
Install the following packages from your distribution package manager:
|
|
- `meson`
|
|
- `opencv`
|
|
- `boost`
|
|
|
|
A better procedure for this (hopefully involving Meson) will be added / documented at a later date.
|
|
|
|
### Setup Meson
|
|
|
|
```shell
|
|
meson setup build
|
|
```
|
|
|
|
*NOTE FOR JETBRAINS / CLION USERS: PLEASE SET YOUR MESON BUILD DIRECTORY TO `build` IN THE IDE SETTINGS UNDER "Build /
|
|
Execution / Deployment" -> "Meson"*
|
|
|
|
### Compiling
|
|
|
|
```shell
|
|
meson build client # for client only
|
|
meson build server # for server only
|
|
```
|
|
|
|
## Running
|
|
```shell
|
|
./build/client # for client application
|
|
./build/server # for server application
|
|
``` |