Resource pa:mediainfo

Overview

The pa:mediainfo resource provides the media file information of an asset.

Properties

The pa:mediainfo resource has the following properties:

base

The base identifier of the asset.

mediainfo

A map of format specifiers to an array of file descriptions for that format. Example:

{
  "mediainfo": {
    "XDCAM-HD 50mbps 1080p 25": [
      {
        "file_mob_id": "060a2b340101010101010f0013-000000-9a855fb4b5e900a5-8be8d6ae5290-49f1",
        "file_path": "//kl-nexis01/.../2013060413v018c21529.mxf",
        "media_status": "ONLINE",
        "span": {
          "duration": 578,
          "start": 0
        }
      }
    ]
  }
}

Offline files appear with an empty string as format specifier. See the example for an offline asset below.

Properties for each file:

Property

Description

file_mob_id

The file MOB ID.

file_path

UNC path of the file.

Only for online files.

media_status

Media status. Typical values: ONLINE and OFFLINE.

span

The span covered by the media file. Sub properties:

  • start: start of the span in frames

  • duration: duration of the span in frames

Only for online files.

The pa:mediainfo resource has no link relations.

Examples

Example resource for an online asset
 
{
  "base": {
    "systemID": "DD481E2E-260B-4684-9D25-44C774E3F782",
    "systemType": "interplay-pam",
    "id": "060a2b340101010101010f0013-000000-6dda7dad08c24cfd-b581d7f05b5b-51fb",
    "type": "masterclip"
  },
  "mediainfo": {
    "PCM": [
      {
        "span": {
          "start": 0,
          "duration": 578
        },
        "file_mob_id": "060a2b340101010101010f0013-000000-9b855fb4b5e900a5-eaaddb3c870c-3e99",
        "media_status": "ONLINE",
        "file_path": "//nexis01/…​/2013060413a028c26f7f.mxf"
      },
      {
        "span": {
          "start": 0,
          "duration": 578
        },
        "file_mob_id": "060a2b340101010101010f0013-000000-9a855fb4b5e900a5-5d76f1bbe9eb-b3a6",
        "media_status": "ONLINE",
        "file_path": "//nexis01/…​/2013060413a018c27d65.mxf"
      }
    ],
    "XDCAM-HD 50mbps 1080p 25": [
      {
        "span": {
          "start": 0,
          "duration": 578
        },
        "file_mob_id": "060a2b340101010101010f0013-000000-9a855fb4b5e900a5-8be8d6ae5290-49f1",
        "media_status": "ONLINE",
        "file_path": "//nexis01/…​/2013060413v018c21529.mxf"
      }
    ]
  },
  "_links": {
    "self": {
      "href": "https://…​"
    }
  }
}
 

Example resource for an offline asset
 
{
  "base": {
    "systemID": "DD481E2E-260B-4684-9D25-44C774E3F782",
    "systemType": "interplay-pam",
    "id": "060a2b340101010101010f0013-000000-e9850ae512384717-99486330bb6d-77f0",
    "type": "masterclip"
  },
  "mediainfo": {
    "": [
      {
        "file_mob_id": "060a2b340101010101010f0013-000000-9114589700ea00a5-fba5db3c870c-3e99",
        "media_status": "OFFLINE"
      },
      {
        "file_mob_id": "060a2b340101010101010f0013-000000-59d4a86ef6e900a5-8b22f1bbe9eb-b3a6",
        "media_status": "OFFLINE"
      }
    ]
  },
  "_links": {
    "self": {
      "href": "https://…​"
    }
  }
}