Skills
Skills denote the capabilities of the used FFmpeg binary. It includes version information, supported input and output protocols, available hardware accelerators, supported formats for muxing and demuxing, filters, and available input and output devices.
Read
Example:
curl http://127.0.0.1:8080/api/v3/skills \
-H 'accept: application/json' \
-X GETfrom core_client import Client
client = Client(
base_url="http://127.0.0.1:8080"
)
client.login()
core_ffmpeg_skills = client.v3_skills_get()
print(core_ffmpeg_skills)import (
"fmt"
"github.com/datarhei/core-client-go/v16"
)
client, _ := coreclient.New(coreclient.Config{
Address: "https://127.0.0.1:8080",
})
skills, err := client.Skills()
fmt.Printf("%+v\n", skills)Description:
Reload
Reloading the skills might be necessary if you plug e.g. an USB device. It will only show up in the list of available devices if they are probed again.
Example:
Last updated
Was this helpful?
