If you're experiencing video playback issues in Data Center, follow these steps to fix the problem. These steps help you identify incorrect primary assets and update to the correct TDO primary asset.
Steps
- List all TDOs and identify incorrect primary assets based on the
signedUri field.
Example
query listPrimaryAsset {
temporalDataObjects(limit: 100) {
records {
id
primaryAsset(assetType:"media"){
signedUri
}
}
}
}
- Identify the correct Asset ID to use as the TDO's primary asset.
Example
query primaryAsset {
temporalDataObject(id: "117679345") {
details
primaryAsset(assetType: "media") {
signedUri
type
}
assets {
records {
id
assetType
signedUri
}
}
}
}
- Update the primary asset.
Example
mutation setPrimaryAsset {
updateTDO( input: {
id: 117679345,
primaryAsset:
{ id: "117679345_t6l92LBhp0", assetType: "media" }
})
{
id
}
}