Audio annotation - JSON
  • 11 Mar 2025
  • Dark
    Light
  • PDF

Audio annotation - JSON

  • Dark
    Light
  • PDF

Article summary

Overview

Dataloop's Audio transcription studio allows creating and editing audio transcription. The annotations JSON format is similar to Video annotation, where annotations also span across time, but simpler, since there are no annotation coordinates.


JSON output format

{
  "annotations": [
    {
  "id": "67ac977faeb79b24172c7457",
  "datasetId": "64b4d464bdf1fccfe1ba5790",
  "url": "https://gate.dataloop.ai/api/v1/items/67ac977faeb79b24172c7457",
  "dataset": "https://gate.dataloop.ai/api/v1/datasets/64b4d464bdf1fccfe1ba5790",
  "createdAt": "2025-02-12T12:43:43.549Z",
  "dir": "/",
  "filename": "/file_example_MP3_1MG.mp3",
  "type": "file",
  "hidden": false,
  "metadata": {
    "system": {
      "encoding": "7bit",
      "isBinary": true,
      "mimetype": "audio/mpeg",
      "originalname": "file_example_MP3_1MG.mp3",
      "refs": [],
      "size": 1059386,
      "taskStatusLog": []
    }
  },
  "name": "file_example_MP3_1MG.mp3",
  "creator": "user@gmail.com",
  "updatedAt": "2025-02-12T12:43:43.642Z",
  "updatedBy": "user@gmail.com",
  "stream": "https://gate.dataloop.ai/api/v1/items/67ac977faeb79b24172c7457/stream",
  "thumbnail": "https://gate.dataloop.ai/api/v1/items/67ac977faeb79b24172c7457/thumbnail",
  "annotations": [
    {
      "id": "67cee4399b0de1e2d0d6ec3b",
      "datasetId": "64b4d464bdf1fccfe1ba5790",
      "itemId": "67ac977faeb79b24172c7457",
      "url": "https://gate.dataloop.ai/api/v1/annotations/67cee4399b0de1e2d0d6ec3b",
      "item": "https://gate.dataloop.ai/api/v1/items/67ac977faeb79b24172c7457",
      "dataset": "https://gate.dataloop.ai/api/v1/datasets/64b4d464bdf1fccfe1ba5790",
      "type": "subtitle",
      "label": "sentence-1",
      "attributes": [],
      "coordinates": {
        "text": "Hello! How is the weather?"
      },
      "metadata": {
        "system": {
          "attributes": {
            "1": "Yes"
          },
          "automated": false,
          "clientId": "4f21b93a-7be8-469c-9294-672d0da6057c",
          "endFrame": 1,
          "endTime": 11.466,
          "frame": 0,
          "isOnlyLocal": false,
          "isOpen": false,
          "itemLinks": [],
          "objectId": "1",
          "openAnnotationVersion": "1.91.1-prod.3",
          "recipeId": "6569aa2b27d7bdd0605b8fc9",
          "snapshots_": [],
          "startTime": 4.224,
          "system": false
        },
        "user": {}
      },
      "creator": "user1@dataloop.ai",
      "createdAt": "2025-03-10T13:08:09.935Z",
      "updatedBy": "user1@dataloop.ai",
      "updatedAt": "2025-03-10T13:11:47.479Z",
      "hash": "f980c431726214904340fcb3378c1f396c11cacd",
      "source": "ui"
    }
  ],
  "annotationsCount": 1,
  "annotated": true
  }
  ]
}

Dictionary Table

Key NameDefinitionParent Key
annotationsList of annotationsRoot
idUnique identifier for the itemannotations
datasetIdUnique identifier for the datasetannotations
urlURL to access the itemannotations
datasetURL to access the datasetannotations
createdAtTimestamp when the item was createdannotations
dirDirectory path of the itemannotations
filenameName of the fileannotations
typeType of the item (e.g., file)annotations
hiddenBoolean indicating if the item is hiddenannotations
metadataMetadata associated with the itemannotations
metadata.systemSystem-level metadatametadata
encodingEncoding type of the filemetadata.system
isBinaryBoolean indicating if the file is binarymetadata.system
mimetypeMIME type of the filemetadata.system
originalnameOriginal name of the filemetadata.system
refsList of reference itemsmetadata.system
sizeSize of the file in bytesmetadata.system
taskStatusLogLog of task statusesmetadata.system
nameName of the itemannotations
creatorCreator of the itemannotations
updatedAtTimestamp when the item was last updatedannotations
updatedByUser who last updated the itemannotations
streamURL to stream the audioannotations
thumbnailURL to the thumbnail imageannotations
annotationsList of annotations for the itemannotations
annotations.idUnique identifier for the annotationannotations[]
annotations.datasetIdDataset ID associated with the annotationannotations[]
annotations.itemIdItem ID the annotation belongs toannotations[]
annotations.urlURL to access the annotationannotations[]
annotations.itemURL to the annotated itemannotations[]
annotations.datasetURL to the dataset of the annotationannotations[]
annotations.typeType of annotation (e.g., subtitle)annotations[]
annotations.labelLabel of the annotationannotations[]
annotations.attributesList of attributes associated with the annotationannotations[]
coordinatesCoordinates for the annotation (e.g., text)annotations[]
coordinates.textAnnotated text contentcoordinates
annotations.metadataMetadata related to the annotationannotations[]
metadata.systemSystem-related metadata for the annotationannotations.metadata
attributesAttributes related to the annotationmetadata.system
automatedBoolean indicating if the annotation was generated automaticallymetadata.system
clientIdClient identifiermetadata.system
endFrameEnd frame of the annotationmetadata.system
endTimeEnd time of the annotation (in seconds)metadata.system
frameFrame number of the annotationmetadata.system
isOnlyLocalBoolean indicating if the annotation is localmetadata.system
isOpenBoolean indicating if the annotation is openmetadata.system
itemLinksList of linked itemsmetadata.system
objectIdObject ID associated with the annotationmetadata.system
openAnnotationVersionVersion of the annotation toolmetadata.system
recipeIdRecipe ID used for annotationmetadata.system
snapshots_Snapshots related to the annotationmetadata.system
startTimeStart time of the annotation (in seconds)metadata.system
systemBoolean indicating if it's a system annotationmetadata.system
userUser-related metadatametadata
creatorUser who created the annotationannotations[]
createdAtTimestamp when the annotation was createdannotations[]
updatedByUser who last updated the annotationannotations[]
updatedAtTimestamp when the annotation was last updatedannotations[]
hashHash value associated with the annotationannotations[]
sourceSource of the annotation (e.g., UI)annotations[]
annotationsCountTotal count of annotationsannotations
annotatedBoolean indicating if the item is annotatedannotations

What's Next