When using the Baton QC service in VidiNet from a VidiCore API instance, a Baton QC Test Plan must be provided as part of the Baton QC job instruction . A set of sample Baton QC Test Plans will automatically be added to your VidiCore API instance when launching the Baton QC service from the Vidinet Store. For existing or advanced users of Baton QC, custom Test Plans from any on-prem Baton QC Enterprise system can easily be imported to VidiCore for use with the Vidinet Baton QC Service(details on how to create a Baton QC job in VidiCore API can be found in the APIdoc)
Baton QC Test Plans are stored in VidiCore API on the endpoint:
Code Block |
---|
/API/analyze-preset |
Sample Baton QC Test Plans
A set of sample Baton QC Test Plans can automatically be added to your VidiCore API instance when launching the Baton QC service from the VidiNet Store. The sample Test Plans can also be added manually to a VidiCore system. See details below.
Test Plan Name | Description | Download | ||||
---|---|---|---|---|---|---|
Generic | Has all the basic checks enabled, such as black/freeze frames, blockiness, RGB color gamut and signal level checks. |
| ||||
GenericHDR | Same as the Generic plan, but made for HDR content. |
| ||||
GenericPSE | Same as the Generic plan, but with Flashiness/PSE checks enabled. |
| ||||
XDCAM_HD_422_MXF_1080i50 | Has specific checks for validating XDCAM HD content. |
| ||||
AS-11_UK_DPP_HD | Has all the checks for validating AS-11 UK DPP files. |
|
Using custom Adding a Baton QC Test Plans (export - import)
Custom Test Plans from any onprem Baton QC Enterprise system can be used with the Baton QC service in Vidinet.
...
Export your Test Plan XML from the Baton QC management user interface
...
Plan to VidiCore API
1. Paste the Baton QC Test Plan XML into the AnalyzePresetDocument
Code Block |
---|
<AnalyzePresetDocument xmlns="http://xml.vidispine.com/schema/vidispine"> <data> <baton> <key>batonTestPlan</key> <testPlan><<value><![CDATA[<?xml version="1.0" ?> <<<<<------- PASTE TEST PLAN XML HERE ]]></testPlan>value> </baton>data> </AnalyzePresetDocument> |
3 2. Add the Test Plan to your VidiCore API instance with the following command
Code Block |
---|
PUT /API/analyze-preset/{customPresetName} |
Accepts: application/xml, application/json - AnalyzePresetDocument
Anchor | ||||
---|---|---|---|---|
|
For existing or advanced users of Baton QC, custom Test Plans from any on-prem Baton QC Enterprise system can easily be imported to VidiCore for use with the VidiNet Baton QC Service.
1. Export your Test Plan XML from the Baton QC management user interface
...
2. Paste the contents of the exported XML into the AnalyzePresetDocument as explained above.