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 > -e < EMAIL ADDRESS >
```
Then run the API thru the systemd service, or like:
```BASH
ffpapi -l 127.0.0.1:8080
```
2022-06-23 16:39:13 -04:00
**For possible endpoints read: [api endpoints ](/docs/api.md )**