AzureでWPサイト構築して動画再生できない解消
2436 ワード
WPサイトをAzureAppServiceで構築した際、動画が自動で再生されなかったので、再生するためのメモ
追加したコード
staticContentで再生したい動画の拡張子を追加することで再生できました
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
<mimeMap fileExtension=".ogg" mimeType="video/ogg" />
<mimeMap fileExtension=".webm" mimeType="video/webm" />
</staticContent>
設定がない場合404
設定がない場合は、404エラーが出ました
追加する箇所はsystem.webServer内
追加する箇所は内のようでした
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
<mimeMap fileExtension=".ogg" mimeType="video/ogg" />
<mimeMap fileExtension=".webm" mimeType="video/webm" />
</staticContent>
</system.webServer>
</configuration>
Author And Source
この問題について(AzureでWPサイト構築して動画再生できない解消), 我々は、より多くの情報をここで見つけました https://qiita.com/mmt/items/678ab458c88ff2669a25著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .