I'm working on adding an OliveTin Action that would use an EDL to add commercial chapter markers to Channels DVR recordings, but I'd like it to optionally trigger only when a recording's Comskip results have been looked at, and saved -- to generate a "Verified" tag. Is there an endpoint I could use to do that verification?
You can get this info in the Server API:
Thanks! Super easy -- should have looked there first. This is giving me the name, and verified=true:
curl -s http://media-server6:8089/api/v1/all | jq -c '.[] | select(.verified == true) | {title, verified}'
I'll just check for whether a matching EDL exists, and that should be most of what I need.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.