ユーザーがビデオタグでビデオとビデオ再生をアップロードするビデオモジュールを作成しました
<video id="Video1" runat="server" controls="controls" autoplay tabindex="5" visible="false"
class="video-js vjs-default-skin" data-setup="{}">
<source id="Source1" runat="server" type="video/mp4" />
<source id="Source2" runat="server" type="video/flv" />
</video>
.cs
public void getExtension(string Filename)
{
string Extension = "";
Extension = Path.GetExtension(Filename);
if (Extension == ".mp4")
{
Source1.Attributes.Add("src", Finalpath);
}
else if (Extension == ".flv")
{
Source2.Attributes.Add("src", Finalpath);
}
}
特定のモジュールはローカルで動作しますが、これをライブ Web サイトにインストールすると、ビデオが再生されません。ローカルで次のようにビデオのURLのページを調べました
http://dc620x_dev2/DesktopModules/DNNCentric-VC_ManageLessions/erf/uyn/2.mp4
そしてライブで
http://videoclasses.webhostcentric.com/DesktopModules/DNNCentric-VC_ManageLessions/Abc/yeghbf/2.mp4
エラーが表示されます:
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
私が欠けているものやコードのエラー。助けてくれてありがとう。