DASH encoding failing

Product

Encoding - VOD

Question

Unable to encode to dash format
encodingid: 2be682be-3f37-44e6-8648-7e437c1f8d1a

Encoding has failed.

Problem with processing input.

Encoding on cluster failed.

Error acquiring encoding instance. Encoding continues

An error occurred during audio transcoding.

Hi,

Thank you for reaching out to the Bitmovin Community.

After reviewing the logs and settings of the encoding job, the error seems to be caused by the PTSAlignMode.ALIGN_ZERO_NEGATIVE_CTO being set for fMP4 muxing of the audio. Specifically, the error was caused by the PTSAlignMode setting in the following Fmp4 muxing:

  "type": "FMP4",
  "id": "33e3ff08-4b45-4e8c-826b-5ef1182983bb",
  "streams": [
    {
      "id": "5147687f-7e0b-4e48-a463-a7d476e89223",
      "name": "NOMAD_AAC_128K",
      "inputStreams": [...],
      "codecConfigId": "55429d90-c640-4d41-8141-c0de310f0048",
      "codecConfig": {
        "id": "55429d90-c640-4d41-8141-c0de310f0048",
        "name": "NOMAD_AAC_128K",
        "type": "AAC",
        "bitrate": 256000,
        "rate": 44100,
        "cutoffFrequency": 10000,
        "channelLayout": "NONE"
      }
    }
  ],
  "streamConditionsMode": "DROP_MUXING",
  "name": "AAC_128K_FMP4",
  "segmentLength": 4,
  "segmentNaming": "weekendupdate_lite_DASH_1080_%number%.mp4",
  "initSegmentName": "weekendupdate_lite_DASH_1080_INIT.mp4",
  "ptsAlignMode": "ALIGN_ZERO_NEGATIVE_CTO"

This mode is a valid option when setting fMP4 for H.264 and H.265, but it can’t be used for other codecs such as AAC audio as noted in the release note (link).

Therefore, could you please try removing the PTSAlignMode setting from the above audio fMP4 muxing configuration and attempt the encoding again? Please let us know if you have any question. Thank you.

Best Regards,
Kazuhide

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.