ffplayout/ffplayout-api/README.md

45 lines
1.3 KiB
Markdown
Raw Normal View History

2022-06-21 17:10:38 -04:00
**ffplayout-api**
================
2022-06-22 15:25:30 -04:00
2022-06-23 16:39:13 -04:00
ffplayout-api (ffpapi) is a non strict REST API for ffplayout. It makes it possible to control the engine, read and manipulate the config, save playlist, etc.
2022-06-22 15:25:30 -04:00
To be able to use the API it is necessary to initialize the settings database first. To do that, run:
```BASH
ffpapi -i
```
Then add an admin user:
```BASH
ffpapi -u <USERNAME> -p <PASSWORD> -m <MAIL ADDRESS>
2022-06-22 15:25:30 -04:00
```
Then run the API thru the systemd service, or like:
```BASH
2022-07-25 11:26:49 -04:00
ffpapi -l 127.0.0.1:8787
2022-06-22 15:25:30 -04:00
```
Possible Arguments
-----
```BASH
OPTIONS:
-a, --ask ask for user credentials
-d, --domain <DOMAIN> domain name for initialization
-h, --help Print help information
-i, --init Initialize Database
-l, --listen <LISTEN> Listen on IP:PORT, like: 127.0.0.1:8787
-m, --mail <MAIL> Admin mail address
-p, --password <PASSWORD> Admin password
-u, --username <USERNAME> Create admin user
-V, --version Print version information
```
If you plan to run ffpapi with systemd set permission from **/usr/share/ffplayout** and content to user **ffpu:ffpu**. User **ffpu** has to be created.
2022-06-23 16:39:13 -04:00
**For possible endpoints read: [api endpoints](/docs/api.md)**
2022-07-25 11:26:49 -04:00
ffpapi can also serve the browser based frontend, just run in your browser `127.0.0.1:8787`.