私はビデオストリーミングにかなり慣れていません。BLOB ストレージからビデオをストリーミングする Web ページのセットアップに必要なすべての手順の例を示すページを知っている人はいますか? Silverlight ではなく、FLASH プレーヤーを使用するのが理想的です。
Flash Player を含むページを含む Web サイトを Azure に持っています。VS プロジェクト フォルダに MP4 ビデオ ファイルを含めると問題なく動作しますが、ファイル名を BLOB ストレージ内の同じビデオ ファイルの URL に変更すると、空白の表示になります。ビデオはクライアントによって作成および提供されるため、フォーマットなどは制御しません。
私の Web ページには、次のオブジェクト タグがあります。
<object id="csSWF" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="704" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
<param name="movie" value="VideoFileName_controller.swf" />
<param name="scale" value="showall" />
<param name="bgcolor" value="#1a1a1a" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="tocdoc=left&showsearch=true&autostart=false&autohide=true&xmp=VideoFileName_config.xml&content=https://BLAHBLAHBLAH.blob.core.windows.net/media/VideoFileName.mp4&thumb=FirstFrame.png&containerwidth=800&containerheight=704&smoothing=true&enablejsapi=true&fullscreen=true&windowbox=false&showbranding=false&showstartscreen=true&showendscreen=true&basecolor=272727&loop=false" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="VideoFileName_controller.swf" width="800" height="704">
<param name="scale" value="showall" />
<param name="bgcolor" value="#1a1a1a" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="tocdoc=left&showsearch=true&autostart=false&autohide=true&xmp=VideoFileName_config.xml&content=https://BLAHBLAHBLAH.blob.core.windows.net/media/VideoFileName.mp4&thumb=FirstFrame.png&containerwidth=800&containerheight=704&smoothing=true&enablejsapi=true&fullscreen=true&windowbox=false&showbranding=false&showstartscreen=true&showendscreen=true&basecolor=272727&loop=false" />
<!--<![endif]-->
<div id="noUpdate">
<p>The video content presented here requires JavaScript to be enabled in your browser and the latest version of the Adobe Flash Player installed. If you are using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Adobe Flash Player by <a href="http://www.adobe.com/go/getflashplayer">downloading here</a>. </p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>