直播資訊清單操控工具

Pod Serving API 提供經過編碼和有條件的廣告區隔 且可直接合併至面向使用者的 HTTP 即時串流 或 MPEG-DASH 媒體播放清單。如果是 MPEG-DASH,Pod Serving API 也提供 資訊清單範本,為這類廣告提供額外資訊和背景資訊 區隔

本指南的重點在於實作基本的 Pod 供應資訊清單操控 用於直播

事前準備:在 Google Ad Manager 中設定直播活動

透過 Pod 提供 API 提出任何請求前,您必須先建立廣告 為您處理的各次直播建立管理員直播活動。您可以建立 透過「直播」這個方式 LiveStreamEventService API敬上 或 Google Ad Manager 網頁介面

您必須符合下列條件,才能將直播活動與 Pod 提供 API 搭配使用 填入多個事件屬性:

  • customAssetKey - 要用於這個事件的自訂 ID。必須為 替聯播網所有事件中的不重複值
  • adTags - Ad Manager 廣告投放所產生的主要廣告代碼網址 工作流程
  • dynamicAdInsertionType - 必須設為 POD_SERVING_REDIRECT
  • streamingFormat - 據此設定 HLSDASH
  • segmentUrlAuthenticationKeyIds - 至少一個 HMAC 金鑰 用於簽署廣告區隔請求
  • daiEncodingProfileIds:相關 DAIEncodingProfile 已為這個事件啟用 ID。
  • startDateTime:事件的開始日期和時間
  • endDateTime:此活動排定的結束日期和時間。此屬性 如果 unlimitedEndDateTimeis false and ignored ifunlimitedEndDateTimeis true.unlimitedEndDateTime` - 布林值,則為必要欄位。如上所示。

接收串流資訊清單要求

資訊清單操縱器必須提供 API 端點,才能監聽資訊清單 來自影片播放器用戶端應用程式的廣告請求您至少必須使用這個端點 從用戶端播放器應用程式收集串流 ID,且必須傳回拼接 串流資訊清單。串流 ID 可用來識別向廣告的串流工作階段 經理。

您還需要收集其他資訊, Content ID 就是內容串流

可能的資訊清單要求端點示例

GET /api/video/{asset_key}/manifest.{format}
Host: {your_domain}
路徑參數
asset_key 與系統中要求的直播相對應的假設 ID。
format 與串流格式相對應的假設參數。下列其中一項:
mpd 適用於 MPEG-DASH 串流
m3u8 HTTP 即時串流串流
查詢參數
stream_id 用戶端影片播放器應用程式中的 Ad Manager 串流 ID。

擷取內容串流

使用從資訊清單要求中收集到的內容 ID 選取內容 再搭配廣告拼接

將廣告區隔結合到內容串流中

視串流格式而定,拼接廣告區隔網址會有所不同。

HTTP 即時串流串流

HTTP 即時串流串流通常是以多變數資訊清單形式提供,其中包含 一組指向變化版本資訊清單的連結,分別對應至各個編碼版本

注意:為了方便起見,本指南假定您的 HLS 媒體編碼採用 格式,將音訊和影片結合成同一個片段檔案。

代理多變化版本播放清單

您必須替換原始多變化版本中的每個變化版本播放清單網址 用另一個端點呼叫播放清單來處理玩家的 所選變化版本的資訊清單。

拼接 HLS 的其餘步驟會假設單一變數的資訊清單。 正在處理。

可能的變化版本要求端點示例
GET /api/video/{asset_key}/variant/{variant_id}.m3u8
Host: {your_domain}
路徑參數
asset_key 與系統中要求的直播相對應的假設 ID。
variant 包含特定子類 ID 的假設參數 或圖片。
查詢參數
stream_id 用戶端影片播放器應用程式中的 Ad Manager 串流 ID。用途 透過資訊清單操縱器識別使用者工作階段。
未處理的多變化版本資訊清單範例
#EXTM3U
#EXT-X-STREAM-INF:BANDWIDTH=5000000,RESOLUTION=1920x1080,CODECS="avc1.4d000c,mp4a.40.5"
https://cdn.{...}/1080p.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=2500000,RESOLUTION=1280x720,CODECS="avc1.4d000c,mp4a.40.5"
https://cdn.{...}/720p.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1000000,RESOLUTION=640x360,CODECS="avc1.4d000d,mp4a.40.5"
https://cdn.{...}/360p.m3u8
Proxy 多變數資訊清單範例
#EXTM3U
#EXT-X-STREAM-INF:BANDWIDTH=5000000,RESOLUTION=1920x1080,CODECS="avc1.4d000c,mp4a.40.5"
https://{manifest_manipulator}/api/video/tears_of_steel/variant/1080p.m3u8?stream_id=6e69425c-0ac5-43ef-b070-c5143ba68541:CHS
#EXT-X-STREAM-INF:BANDWIDTH=2500000,RESOLUTION=1280x720,CODECS="avc1.4d000c,mp4a.40.5"
https://{manifest_manipulator}/api/video/tears_of_steel/variant/720p.m3u8?stream_id=6e69425c-0ac5-43ef-b070-c5143ba68541:CHS
#EXT-X-STREAM-INF:BANDWIDTH=1000000,RESOLUTION=640x360,CODECS="avc1.4d000d,mp4a.40.5"
https://{manifest_manipulator}/api/video/tears_of_steel/variant/360p.m3u8?stream_id=6e69425c-0ac5-43ef-b070-c5143ba68541:CHS

找出廣告插播區隔並插入不連續性

處理變化版本資訊清單時,請追蹤開始時間、持續時間和 下一個即將到來的廣告插播索引 (直到動態資訊清單處理完成) 包含將由廣告素材取代的區隔。

系統會根據不同的內容,以不同的方式劃分廣告插播時間點 。決定廣告插播時間點的常見做法,就是在廣告前方加入廣告 以 #EXT-X-CUE-OUT 標記搭配 #EXT-X-CUE-IN 標記。

如要將 Google 代管的廣告插播與您的內容區隔分開,您必須插入 在每個廣告時段的開頭和結尾加入 #EXT-X-DISCONTINUITY 個代碼。如果這些 不連續標記並未出現在最終資訊清單中,因此播放將失敗。

插入的廣告區隔 URI 未經加密。如果內容已加密, 您也必須指定 #EXT-X-KEY:METHOD=NONE 移除加密功能 然後在每個廣告插播時間點的第一個廣告區隔之前加進同一個廣告 。

資訊清單範例 (原始版)
#EXTM3U
#EXT-X-VERSION:6
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:0

#EXTINF:5.005,
contentorigin.com/1.ts
#EXTINF:5.005,
contentorigin.com/2.ts
#EXT-X-CUE-OUT:15.000
#EXTINF:5.005,
contentorigin.com/3.ts
#EXTINF:5.005,
contentorigin.com/4.ts
#EXTINF:5.005,
contentorigin.com/5.ts
#EXTINF:5.000,d
contentorigin.com/6.ts
#EXT-X-CUE-IN
#EXTINF:5.005,
contentorigin.com/7.mp4
#EXTINF:5.005,
contentorigin.com/8.mp4
已插入不連續性的資訊清單
#EXTM3U
#EXT-X-VERSION:6
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:0

#EXTINF:5.005,
contentorigin.com/1.ts
#EXTINF:5.005,
contentorigin.com/2.ts
#EXTINF:5.005,
#EXT-X-DISCONTINUITY
{... New segments will go here ...}
#EXT-X-DISCONTINUITY
#EXTINF:5.005,
contentorigin.com/7.mp4
#EXTINF:5.005,
contentorigin.com/8.mp4

處理廣告連播區隔

對於廣告連播中的每個區隔,您必須追蹤幾個額外的值:

  • segment_number:廣告連播中的區隔索引 (從 0 開始)。或「init」mp4 初始化片段
  • segment_duration:目前區段的持續時間,以毫秒為單位。這個 除了廣告連播中的最後一個區隔以外,所有區隔的值都必須相同。
  • segment_offset:加入前一個 區隔時間長度與區隔偏移量 (以毫秒為單位)
  • last:用於識別廣告連播中最後一個區段的布林值。預設值 設為 false

建立廣告區隔網址

將廣告插播內的各個區段替換為下列格式的網址:

/linear/pods/v1/seg/network/{network_code}/custom_asset/{custom_asset_key}/pod/{pod_id}/profile/{profile_name}/{segment_number}.(ts|mp4|vtt|aac|ac3|eac3)
路徑參數
network_code 這個聯播網的 Ad Manager 360 聯播網代碼。
custom_asset_key LiveStreamEventService 中指定的自訂直播資產鍵 API,或是 Ad Manager 360 網頁介面的直播頁面上。
pod_id 廣告插播的 ID。須為整數,開頭應為 1,並針對每個廣告插播增加 1 次。

在所有查看相同廣告插播時間點的所有使用者,這個值都必須相同 查看事件摘要。

profile_name 要求設定檔的 ID,
segment_number 目前廣告連播中的這個區隔索引 (從零開始)。
使用 MP4 容器時,您可以將 column_number 設為「init」,來要求初始化區隔。
查詢參數
stream_id 必要 Stream Create 傳回使用者 stream_id 參數 請求。
sd 必要 segment_duration
so 選用 segment_offset

如果缺少 so,系統會假設所有先前的區隔都含有 持續時間相同,而區隔偏移的值是從 segment_numbersd

pd 必填 (啟用不限時間長度廣告插播的事件除外) 廣告插播的時間長度 (以毫秒為單位)。也稱為 ad_pod_duration
auth-token 必要 帶正負號的網址編碼 HMAC 權杖 各個廣告連播的值
last 選用 布林值,表示廣告插播中的最後一個部分。預設值為 false。

查詢參數值必須正確編碼成網址安全。這是 對 auth-token 欄位來說尤其重要,因為其中可能包含 /+= 個半形字元。

資訊清單範例 (替換後)
#EXTM3U
#EXT-X-VERSION:6
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:0

#EXTINF:5.005,
contentorigin.com/1.ts
#EXTINF:5.005,
contentorigin.com/2.ts
#EXT-X-DISCONTINUITY
#EXTINF:5.005,
https://dai.google.com/linear/pods/v1/seg/network/6062/custom_asset/iYdOkYZdQ1KFULXSN0Gi7g/pod/1/profile/devrel4628000/0.ts?sd=5005&so=0&pd=18015&auth-token=custom_asset_key%3DiYdOkYZdQ1KFULXSN0Gi7g~cust_params%3D~exp%3D1489680000~network_code%3D6062~pd%3D180000~pod_id%3D5~hmac%3D44bf78223c240cbc5bae3cdfd794bfc6971b6583cd296f44ef3a46944605cf9a&stream_id=fe6c9136-09a4-4ff6-862e-daee1dea0e1b:MRN2
#EXTINF:5.005,
https://dai.google.com/linear/pods/v1/seg/network/6062/custom_asset/iYdOkYZdQ1KFULXSN0Gi7g/pod/1/profile/devrel4628000/1.ts?sd=5005&so=5005&pd=18015&auth-token=custom_asset_key%3DiYdOkYZdQ1KFULXSN0Gi7g~cust_params%3D~exp%3D1489680000~network_code%3D6062~pd%3D180000~pod_id%3D5~hmac%3D44bf78223c240cbc5bae3cdfd794bfc6971b6583cd296f44ef3a46944605cf9a&stream_id=fe6c9136-09a4-4ff6-862e-daee1dea0e1b:MRN2
#EXTINF:5.005,
https://dai.google.com/linear/pods/v1/seg/network/6062/custom_asset/iYdOkYZdQ1KFULXSN0Gi7g/pod/1/profile/devrel4628000/2.ts?sd=5005&so=10010&pd=18015&auth-token=custom_asset_key%3DiYdOkYZdQ1KFULXSN0Gi7g~cust_params%3D~exp%3D1489680000~network_code%3D6062~pd%3D180000~pod_id%3D5~hmac%3D44bf78223c240cbc5bae3cdfd794bfc6971b6583cd296f44ef3a46944605cf9a&stream_id=fe6c9136-09a4-4ff6-862e-daee1dea0e1b:MRN2
#EXTINF:3.000,
https://dai.google.com/linear/pods/v1/seg/network/6062/custom_asset/iYdOkYZdQ1KFULXSN0Gi7g/pod/1/profile/devrel4628000/3.ts?sd=3000&so=15015&pd=18015&auth-token=custom_asset_key%3DiYdOkYZdQ1KFULXSN0Gi7g~cust_params%3D~exp%3D1489680000~network_code%3D6062~pd%3D180000~pod_id%3D5~hmac%3D44bf78223c240cbc5bae3cdfd794bfc6971b6583cd296f44ef3a46944605cf9a&stream_id=fe6c9136-09a4-4ff6-862e-daee1dea0e1b:MRN2&last=true
#EXT-X-DISCONTINUITY
#EXTINF:5.005,
contentorigin.com/7.mp4
#EXTINF:5.005,
contentorigin.com/8.mp4

恭喜!您目前放送的直播是由以下合作夥伴提供的廣告區隔: 動態廣告插播 Pod Serving API。

DASH 串流

DASH 串流會以 MPD 檔案形式提供,其中包含所有串流編碼 單一檔案,內容以一系列時段表示。

要求期間範本

向 Google Ad Manager 索取期間範本。這個範本會成為 廣告插播時段,就會填入巨集中的巨集。

每個串流工作階段只能請求一次這個範本,並快取 重複用於每個廣告時段

期間範本要求 Endpointhjf
GET /linear/pods/v1/dash/network/{network_code}/custom_asset/{custom_asset}/pods.json
Host: dai.google.com
Content-Type: application/json
路徑參數
network_code 發布商的 Ad Manager 360 聯播網代碼。
custom_asset Google Ad Manager 中直播活動的自訂素材資源鍵。
查詢參數
stream_id 用戶端影片播放器中的 Ad Manager 串流 ID。
回應 JSON
dash_period_template 時段範本 XML 字串。
segment_duration_ms 虛線範本範本中每個廣告媒體區隔的時間長度, 毫秒。
要求範例 (cURL)
curl https://dai.google.com/linear/pods/v1/dash/network/21775744923/custom_asset/tears_of_steel/pods.json?stream-id=cc59197a-44c0-4be2-a8cc-9a6fdb80158f:DLS
回應範例
{"dash_period_template":"<Period id="adpod-$$pod-id$$" $$period-start$$ $$period-duration$$> <BaseURL>https://dai.google.com/linear/pods/v1/seg/event/{event_code}/pods/$$pod-id$$/profile/</BaseURL>
 <SegmentTemplate initialization="$RepresentationID$/init.mp4?stream_id={a-stream-id}&amp;sd=5000&pd=$$pod-duration$$&amp;cust_params=$$cust_params$$&amp;auth_token=$$token$$" media="$RepresentationID$/$Number$.mp4?stream_id={a-stream-id}&amp;sd=5000&pd=$$pod-duration$$&amp;cust_params=$$cust_params$$&amp;scte35=$$scte35$$&amp;auth_token=$$token$$" startNumber="1" presentationTimeOffset="0">
  <SegmentTimeline>
    <S t="0" d="5" r="$$number-of-repeated-segments$$"/>
  </SegmentTimeline>
  </SegmentTemplate>
  <AdaptationSet id="0" width="1280" height="720" frameRate="30" contentType="video" subsegmentAlignment="true" startWithSAP="1">
    <InbandEventStream schemeIdUri="https://developer.apple.com/streaming/emsg-id3"/>
    <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
    <Representation mimeType="video/mp4" codecs="avc1.640029" id="a943ff679a2f3e71d9181a21b7542122g" bandwidth="3200000"/>
    <Representation mimeType="video/mp4" codecs="avc1.640029" id="abbbd80q4w5ce2fs28308rd1f4g4bat0" bandwidth="1500000"/>
  </AdaptationSet>
  <AdaptationSet id="1" contentType="audio"> <Representation audioSamplingRate="48000" mimeType="audio/mp4" codecs="mp4a.40.2" id="a87ff679a2f3e71d9181a67b7542122c" bandwidth="95000"/>

    <Representation audioSamplingRate="48000" mimeType="audio/mp4" codecs="mp4a.40.2" id="eccbc87e4b5ce2fe28308fd9f2a7baf3" bandwidth="127000"/>
  </AdaptationSet>
</Period>",
"segment_duration_ms":5000}

填入經期範本

期間範本含有多個巨集,您必須為每個廣告替換巨集 。所有巨集都必須替換。未使用的巨集應替換成 空字串 ("")。

巨集 說明 範例
$$pod-id$$ 此時段代表的廣告連播索引。這個值必須符合以下項目: 相同的廣告連播 1
$$period-start$$ 經期的開始時間 (以目前的 MPD 為單位)。選擇性屬性 應替換為 start="###",其中 ### 是廣告插播開始的簡報時間。如果 未提供經期開始時間,則應替換這個巨集 空字串。 start="PT2H33M30S"
$$period-duration$$ 整個廣告期間的時間長度。選填屬性,應 由 duration="###" 取代,其中 ### 是 廣告時間長度,採標準 DASH 時間長度格式。如果 未提供經期的時間長度,則應將這個巨集換成 空字串。 duration="PT15S"
$$pod-duration$$ 為這個廣告連播決定的廣告預期時間長度, 毫秒。 15000
$$number-of-repeated-segments$$ 這個值的計算方式是將廣告期間長度 (以 毫秒) 除以 segment_duration_ms 值,然後無條件進位至 取得最接近的整數 3
$$cust_params$$ 這個巨集可以由 目前的廣告插播時間點 (如果有的話)或更新提示這個值必須採用下列格式: 這項 Ad Manager 使用者介面 說明中心文章。 如果不需要自訂參數,這個巨集應換成空白 字串。 &cust_params=section%3Dblog%26anotherKey%3Dvalue1%2Cvalue2
$$scte35$$ 這個巨集必須替換成該廣告時段專屬的 scte35 值。 (如有提供)。如果不需要 scte35 資訊,這個巨集應該 並以空白字串取代。 /DAqAAAAAAAA///wDwVAAAT2f0/+ecF1mQABC/8ACgAIQ1VFSQAAAAsuZVlR
$$token$$ 帶正負號的網址編碼 HMAC 憑證。 必須提供這個權杖, custom_asset_key%3DiYdOkYZdQ1KFULXSN0Gi7g~exp%3D1489680000~network_code%3D6062~pd%3D180000~pod_id%3D5~hmac%3D6a8c44c72e4718ff63ad2284edf2a8b9e319600b430349d31195c99b505858c9
原始期間範本 (包含巨集)
<Period id="adpod-$$pod-id$$" $$period-start$$ $$period-duration$$>
  <BaseURL>
    https://dai.google.com/linear/pods/v1/seg/event/{event_code}/pods/$$pod-id$$/profile/
  </BaseURL>
  <SegmentTemplate initialization="$RepresentationID$/init.mp4?stream_id=cc59197a-44c0-4be2-a8cc-9a6fdb80158f:DLS&amp;sd=5000&pd=$$pod-duration$$&amp;cust_params=$$cust_params$$&amp;auth_token=$$token$$" media="$RepresentationID$/$Number$.mp4?stream_id=ç√&amp;sd=5000&pd=$$pod-duration$$&amp;cust_params=$$cust_params$$&amp;scte35=$$scte35$$&amp;auth_token=$$token$$" startNumber="1" presentationTimeOffset="0">  
    <SegmentTimeline>
      <S t="0" d="5" r="$$number-of-repeated-segments$$"/>
    </SegmentTimeline>
  </SegmentTemplate>
  <AdaptationSet id="0" width="1280" height="720" frameRate="30" contentType="video" subsegmentAlignment="true" startWithSAP="1">
    <InbandEventStream schemeIdUri="https://developer.apple.com/streaming/emsg-id3"/>
    <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
    <Representation mimeType="video/mp4" codecs="avc1.640029" id="a943ff679a2f3e71d9181a21b7542122g" bandwidth="3200000"/>
    <Representation mimeType="video/mp4" codecs="avc1.640029" id="abbbd80q4w5ce2fs28308rd1f4g4bat0" bandwidth="1500000"/>
  </AdaptationSet>
  <AdaptationSet id="1" contentType="audio"> <Representation audioSamplingRate="48000" mimeType="audio/mp4" codecs="mp4a.40.2" id="a87ff679a2f3e71d9181a67b7542122c" bandwidth="95000"/>
    <Representation audioSamplingRate="48000" mimeType="audio/mp4" codecs="mp4a.40.2" id="eccbc87e4b5ce2fe28308fd9f2a7baf3" bandwidth="127000"/>
  </AdaptationSet>
</Period>
填入的廣告時段
<Period id="pod-0" start="PT5H50M12S">
  <BaseURL>
    https://dai.google.com/linear/pods/v1/seg/event/M-nTcApTRTi6CEGIt4GYMw/pod/0/profile/
  </BaseURL>
  <SegmentTemplate startNumber="0" media="1080p/0.mp4?stream_id=cc59197a-44c0-4be2-a8cc-9a6fdb80158f:DLS&amp;sd=5000&amp;pd=30000&amp;cust_params=&amp;auth-token=&amp;scte35=" initialization="$RepresentationID$/init.mp4?stream_id=cc59197a-44c0-4be2-a8cc-9a6fdb80158f:DLS&amp;pd=30000&amp;cust_params=&amp;auth-token=&amp;scte35=">
    <SegmentTimeline>
      <S d="5" r="1"/>
    </SegmentTimeline>
  </SegmentTemplate>
  <AdaptationSet mimeType="video/mp4" scanType="progressive" contentType="video">
    <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
    <Representation width="768" height="432" frameRate="30" codecs="avc1.42c01e" id="fmp4-video-1200k" bandwidth="1300000">
      <InbandEventStream schemeIdUri="https://developer.apple.com/streaming/emsg-id3"/>
    </Representation>
  </AdaptationSet>
  <AdaptationSet mimeType="audio/mp4" scanType="progressive" contentType="audio">
    <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
      <Representation audioSamplingRate="48000" codecs="mp4a.40.2" id="fmp4-audio-128kbps" bandwidth="128000">
      <AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/>
    </Representation>
  </AdaptationSet>
</Period>

將填入的經期插入 DASH 資訊清單

最後,使用新的 填入廣告時段,然後將最終拼接資訊清單傳回給請求請求的 影片用戶端中播放。

原始內容資訊清單範例
<?xml version="1.0"?>
  <MPD xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:mpeg:DASH:schema:MPD:2011" xsi:schemaLocation="urn:mpeg:DASH:schema:MPD:2011" profiles="urn:mpeg:dash:profile:isoff-main:2011" type="static" mediaPresentationDuration="PT0H9M56.46S">
    <BaseURL>
      http://example.com/tears_of_steel/
    </BaseURL>
    <Period start="PT0S">
      <AdaptationSet bitstreamSwitching="true">

        <Representation id="0" codecs="avc1" mimeType="video/mp4" width="1920" height="1080" startWithSAP="1" bandwidth="500000">
          <SegmentBase>
            <Initialization sourceURL="segments/1080/1.m4s" range="0-862"/>
          </SegmentBase>
          <SegmentList duration="15">
            <SegmentURL media="segments/1080p/2.m4s" mediaRange="863-7113"/>
            <SegmentURL media="segments/1080p/3.m4s" mediaRange="7114-14104"/>
            <SegmentURL media="segments/1080p/4.m4s" mediaRange="14105-17990"/>
            ...
          </SegmentList>
        </Representation>

        <Representation id="1" codecs="avc1" mimeType="video/mp4" width="1280" height="720" startWithSAP="1" bandwidth="250000">
          <SegmentBase>
            <Initialization sourceURL="segments/720p/1.m4s" range="0-864"/>
          </SegmentBase>
          <SegmentList duration="15">
            <SegmentURL media="segments/720p/2.m4s" mediaRange="865-11523"/>
            <SegmentURL media="segments/720p/3.m4s" mediaRange="11524-25621"/>
            <SegmentURL media="segments/720p/4.m4s" mediaRange="25622-33693"/>
            ...
          </SegmentList>
        </Representation>

        <Representation id="1" codecs="avc1" mimeType="video/mp4" width="640" height="480" startWithSAP="1" bandwidth="100000">
          <SegmentBase>
            <Initialization sourceURL="segment/480p/1.m4s" range="0-865"/>
          </SegmentBase>
          <SegmentList duration="15">
            <SegmentURL media="segment/480p/2.m4s" mediaRange="866-26970"/>
            <SegmentURL media="segment/480p/3.m4s" mediaRange="26971-72543"/>
            <SegmentURL media="segment/480p/4.m4s" mediaRange="72544-95972"/>
            ...
          </SegmentList>
        </Representation>
        ...
      </AdaptationSet>
    </Period end>
  </MPD>
拼接的資訊清單範例
<?xml version="1.0"?>
  <MPD xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:mpeg:DASH:schema:MPD:2011" xsi:schemaLocation="urn:mpeg:DASH:schema:MPD:2011" profiles="urn:mpeg:dash:profile:isoff-main:2011" type="static" mediaPresentationDuration="PT0H9M56.46S">
    <BaseURL>
      http://example.com/tears_of_steel/
    </BaseURL>
    
    <Period id="pod-0" start="PT5H50M12S">
  <BaseURL>
    https://dai.google.com/linear/pods/v1/seg/event/M-nTcApTRTi6CEGIt4GYMw/pod/0/profile/
  </BaseURL>
  <SegmentTemplate startNumber="0" media="1080p/0.mp4?stream_id=cc59197a-44c0-4be2-a8cc-9a6fdb80158f:DLS&amp;sd=5000&amp;pd=30000&amp;cust_params=&amp;auth-token=&amp;scte35=$$scte35$$" initialization="$RepresentationID$/init.mp4?stream_id=cc59197a-44c0-4be2-a8cc-9a6fdb80158f:DLS&amp;pd=30000&amp;cust_params=&amp;auth-token=&amp;scte35=$$scte35$$">
    <SegmentTimeline>
      <S d="5" r="1"/>
    </SegmentTimeline>
  </SegmentTemplate>
  <AdaptationSet mimeType="video/mp4" scanType="progressive" contentType="video">
    <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
    <Representation width="768" height="432" frameRate="30" codecs="avc1.42c01e" id="fmp4-video-1200k" bandwidth="1300000">
      <InbandEventStream schemeIdUri="https://developer.apple.com/streaming/emsg-id3"/>
    </Representation>
  </AdaptationSet>
  <AdaptationSet mimeType="audio/mp4" scanType="progressive" contentType="audio">
    <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
      <Representation audioSamplingRate="48000" codecs="mp4a.40.2" id="fmp4-audio-128kbps" bandwidth="128000">
      <AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/>
    </Representation>
  </AdaptationSet>
</Period>
    
</MPD>

恭喜!您現在放送的 DASH 直播內含提供廣告區隔 是由 DAI Pod Serving API 使用。

其他資源