

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# DASH の ad avail 継続時間
<a name="dash-ad-avail-duration"></a>

再生中、 が広告表示 AWS Elemental MediaTailor を検出すると、その表示の一部またはすべてが広告に置き換えられます。MediaTailor は、ad avail の開始時点で広告置換を開始し、広告を以下のように含めます。
+ ad avail が継続時間を指定する場合、MediaTailor は、後続のコンテンツを上書きすることなく、継続時間範囲内に収まる数の広告を含めます。
+ 継続時間が指定されていない場合、MediaTailor は ad avail の終了時点に到達するまで広告を含めます。マルチピリオドマニフェストの場合は、これがピリオドの終了時点です。シングルピリオドマニフェストの場合は、これがイベントの終了時点です。MediaTailor は、ad avail の終了時点を超えて広告を再生しません。Mediatailor が終了時点に到達すると、後続のコンテンツを上書きするのではなく、現行の広告をカットします。

**が広告表示期間 AWS Elemental MediaTailor を検索する方法**  
AWS Elemental MediaTailor は、次の順序で期間設定を検索します。

1. `Event` `duration`

1. スプライス挿入の場合は、`scte35:BreakDuration` `duration`

1. タイムシグナルの場合は `scte35:SegmentationDescriptor` `segmentationDuration`

 AWS Elemental MediaTailor でこれらの設定が見つからない場合は、期間なしで広告インクルードを管理します。

以下は、`Event` が含まれる `duration` の例です。

```
  <Period start="PT444806.040S" id="123586" duration="PT15.000S">
          <EventStream timescale="90000" schemeIdUri="urn:scte:scte35:2013:xml">
            <Event duration="1350000">
              <scte35:SpliceInfoSection protocolVersion="0" ptsAdjustment="180832" tier="4095">
                <scte35:SpliceInsert spliceEventId="4026531855" spliceEventCancelIndicator="false" outOfNetworkIndicator="true" spliceImmediateFlag="false" uniqueProgramId="1" availNum="1" availsExpected="1">
                  <scte35:Program><scte35:SpliceTime ptsTime="5672624400"/></scte35:Program>
                  <scte35:BreakDuration autoReturn="true" duration="1350000"/>
                </scte35:SpliceInsert>
              </scte35:SpliceInfoSection>
            </Event>
              ...
```

以下の例は、継続時間が指定されていない ad avail を示します。この `Event` には `duration` が指定されておらず、`scte35:SpliceInsert` 要素に `scte35:BreakDuration` 子要素は含まれません。

```
  <Period start="PT444836.720S" id="123597" duration="PT12.280S">
          <EventStream timescale="90000" schemeIdUri="urn:scte:scte35:2013:xml">
            <Event>
              <scte35:SpliceInfoSection protocolVersion="0" ptsAdjustment="180832" tier="4095">
                <scte35:SpliceInsert spliceEventId="4026531856" spliceEventCancelIndicator="false" outOfNetworkIndicator="true" spliceImmediateFlag="false" uniqueProgramId="1" availNum="1" availsExpected="1">
                  <scte35:Program><scte35:SpliceTime ptsTime="5675385600"/></scte35:Program>
                </scte35:SpliceInsert>
              </scte35:SpliceInfoSection>
            </Event>
            ...
```