Example issue:
The customer has set the server to a Flex state and can search the available media for a user.
They were however expecting a higher media count, closer to 5670, which would cover all media for the groups in the project.
Job Final Amount Summary
- 4,717 clips did not match all their corresponding MXF tracks in the file system.
- 2,188 clips were filtered out due to having fewer than three tracks or FFmpeg errors.
- The backend setting
INDEX_VIDEO_ONLYallows indexing AVB clips with a single video track when set totrue. - Recommended action: Enable
INDEX_VIDEO_ONLYand retry indexing the 2,188 filtered clips to check if they can be processed successfully. - Check Audio Presence:
- Confirm that clips contain audio tracks, as soundbites require audio to function.
- Settings Location:
- The
INDEX_VIDEO_ONLYand other relevant options are found in thesettings.jsonfile, typically located at:/opt/caraone/dist/settings/settings.json
- The
How to Modify
settings.jsonto EnableINDEX_VIDEO_ONLY- Access the server terminal where CaraOne is installed.
- Open the
settings.jsonfile with a text editor, for examplesudo nano /opt/caraone/dist/settings/settings.json
- Locate the
INDEX_VIDEO_ONLYsetting. If it does not exist, add it under the appropriate section, for example"INDEX_VIDEO_ONLY": true,
- Save the file and exit the editor.
- Restart CaraOne services to apply changes
sudo systemctl restart caraone.service sudo systemctl restart caraone_node_manager.service sudo systemctl restart nginx.service