ビデオをダウンロードするには、ユーザーにダウンロード リンクを提供する必要があります。Firefox を使用してリンクにアクセスすると、ダウンロードではなく再生が開始されます。
どうすればFirefoxに強制的にダウンロードさせることができますか?
いくつかの HTTP ヘッダーを設定する必要があります。PHP での例:
header("Content-Disposition: attachment; filename=" . urlencode($file));
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
左クリックの代わりにリンクを右クリックして、リンクを名前を付けて保存するオプションを選択します..