--- title: li-transcoding-state description: "State of external transcoding job." --- ## Supported Features | Feature | Supported | | ------- | :-------: | | Document | ✗ | | Media | ✔ | | Include | ✗ | | Document Creation Flow | ✗ | | Push Message | ✗ | | Usage Log | ✗ | | Table Dashboard | ✗ | | Display Filter | ✗ | | Search Indexing | ✔ | | System Metadata | ✗ | | Planning System | ✗ | | Webhook Conditions | ✗ | ## Default UI UI to trigger transcodings, see progress and the end result. ## Storage Format ```js { commands: [ { assetKey: , commandId: , createdAt: , state: , errorMessage: , progress: } ], transcodings: [ { assetKey: } ] } ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle' type: 'li-transcoding-state', config: { index: true // optional, default: false. Added in release-2023-07 } ui: { label: 'My Transcoding' // optional, takes "Transcoding State" otherwise } } // ... ] } ```