具有安全 S3 URL 的 MPEG-Dash
Posted
技术标签:
【中文标题】具有安全 S3 URL 的 MPEG-Dash【英文标题】:MPEG-Dash with secure S3 URLs 【发布时间】:2015-08-08 11:35:03 【问题描述】:我正在尝试使用 MPEG-Dash 设置视频服务器,其中视频内容托管在 S3 存储桶上。在本地托管(nginx 服务器)时,它可以正常工作,但是当我将 MPD 文件更改为指向 S3 存储桶时,它就不起作用了。
这就是我正在做的事情:
--首先我将视频转换为多比特率 MP4
/usr/bin/ffmpeg -y -async 1 -vsync -1 -analyzeduration 999999999 -i <SOURCE> \
-movflags faststart -keyint_min 30 -x264opts "keyint=30:min-keyint=30:no-scenecut" -g 30 -filter:v "scale=iw*min(320/iw\,180/ih):ih*min(320/iw\,180/ih), pad=320:180:(320-iw*min(320/iw\,180/ih))/2:(180-ih*min(320/iw\,180/ih))/2" -r:v 30 -s 320x180 -b:v 320k -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 3.0 -an "'.$base.'180p.mp4" \
-movflags faststart -keyint_min 30 -x264opts "keyint=30:min-keyint=30:no-scenecut" -g 30 -filter:v "scale=iw*min(640/iw\,360/ih):ih*min(640/iw\,360/ih), pad=640:360:(640-iw*min(640/iw\,360/ih))/2:(360-ih*min(640/iw\,360/ih))/2" -r:v 30 -s 640x360 -b:v 640k -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 3.0 -an "'.$base.'360p.mp4" \
-movflags faststart -keyint_min 30 -x264opts "keyint=30:min-keyint=30:no-scenecut" -g 30 -filter:v "scale=iw*min(1280/iw\,720/ih):ih*min(1280/iw\,720/ih), pad=1280:720:(1280-iw*min(1280/iw\,720/ih))/2:(720-ih*min(1280/iw\,720/ih))/2" -r:v 30 -s 1280x720 -b:v 1280k -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 3.1 -an "'.$base.'720p.mp4" \
-c:v copy -c:a libfdk_aac -ac 2 -ar 48000 -b:a 96k "'.$base.'aacp.mp4"
--然后我用 MP4Box 破折号
/usr/bin/MP4Box -dash 10000 -rap -profile dashavc264:onDemand -out "stream.mpd" \
180p.mp4#video \
360p.mp4#video \
720p.mp4#video \
aacp.mp4#audio
--导致下面的MPD
<?xml version="1.0"?>
<!-- MPD file Generated with GPAC version 0.5.1-DEV-rev4065 on 2015-08-08T02:18:28Z-->
<MPD xmlns="urn:mpeg:dash:schema:mpd:2011" minBufferTime="PT1.500000S" type="static" mediaPresentationDuration="PT0H1M56.11S" profiles="urn:mpeg:dash:profile:isoff-on-demand:2011, http://dashif.org/guildelines/dash264">
<ProgramInformation moreInformationURL="http://gpac.sourceforge.net">
<Title>/webdata/temp/10/dash/10.mpd generated by GPAC</Title>
</ProgramInformation>
<Period duration="PT0H1M56.11S">
<AdaptationSet segmentAlignment="true" maxWidth="1280" maxHeight="720" maxFrameRate="30" par="16:9" lang="und">
<Representation id="1" mimeType="video/mp4" codecs="avc1.42c01e" frameRate="30" sar="1:1" startWithSAP="1" band>
<BaseURL>180p_track1_dashinit.mp4</BaseURL>
<SegmentBase indexRangeExact="true" indexRange="900-1075">
<Initialization range="0-899"/>
</SegmentBase>
</Representation>
<Representation id="2" mimeType="video/mp4" codecs="avc1.42c01e" frameRate="30" sar="1:1" startWithSAP="1" band>
<BaseURL>360p_track1_dashinit.mp4</BaseURL>
<SegmentBase indexRangeExact="true" indexRange="900-1075">
<Initialization range="0-899"/>
</SegmentBase>
</Representation>
<Representation id="3" mimeType="video/mp4" codecs="avc1.42c01f" frameRate="30" sar="1:1" startWithSAP="1" band>
<BaseURL>720p_track1_dashinit.mp4</BaseURL>
<SegmentBase indexRangeExact="true" indexRange="900-1075">
<Initialization range="0-899"/>
</SegmentBase>
</Representation>
</AdaptationSet>
<AdaptationSet segmentAlignment="true" lang="und">
<Representation id="4" mimeType="audio/mp4" codecs="mp4a.40.2" audiosamplingRate="48000" startWithSAP="1" band>
<AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/>
<BaseURL>aacp_track2_dashinit.mp4</BaseURL>
<SegmentBase indexRangeExact="true" indexRange="837-1012">
<Initialization range="0-836"/>
</SegmentBase>
</Representation>
</AdaptationSet>
</Period>
</MPD>
当我将 MPD 编辑为具有动态 URL 时:
--php源码--
<?php
$temp = S3URL("<VIDEOBUCKET>","10/dash/180p_track1_dashinit.mp4","653");
echo "<BaseURL>".str_replace("https://<VIDEOBUCKET>.s3.amazonaws.com/10/dash/","",$temp)."</BaseURL>".PHP_EOL;
?>
--回显数据--
<BaseURL>180p_track1_dashinit.mp4?AWSAccessKeyId=XXXXXXXXXX&Expires=XXXXXXXXXX&Signature=XXXXXXXXXX</BaseURL>
我在 MPD 文件中获得无效内容。我环顾四周并尝试将 BaseURL 移动到 XML 的 Adaptation、Representation 和其他节,但似乎没有任何效果。
这样做的正确方法是什么?
【问题讨论】:
你用的是哪个播放器,bitdash、dash.js、shaka等? @ChristopherMueller,我都试过了...我认为这与放置 BaseUrl 的位置有关,但 Dash 文档非常神秘,我无法弄清楚。 【参考方案1】:我遇到了同样的问题。我遇到的问题是 S3 预签名 URL 具有需要为 XML 转义的字符。否则你会得到无效的 XML。
我使用的是 C#,所以我必须使用 HttpUtility.htmlEncode()
方法来确保我的安全链接不会使 XML 失效。
【讨论】:
以上是关于具有安全 S3 URL 的 MPEG-Dash的主要内容,如果未能解决你的问题,请参考以下文章
S3 服务 mpeg-dash,将加载清单,但包上的 CORS 失败
AFNetworking 3.2.0 '配置的安全策略只能应用于具有安全基本 URL(即 https)的管理器
如何使用 CloudFront 从 AWS S3 安全地播放 .m3u8 流文件?
MFP 目标 C - WLAFSSLPinningModeCertificate 只能应用于具有安全基本 URL 的管理器