Add audio format option to download form and update API for audio downloads

This commit is contained in:
Peter Meier
2025-12-22 11:06:14 +01:00
parent 486639aaea
commit 4fd9d3f400
4 changed files with 42 additions and 5 deletions

View File

@@ -38,6 +38,7 @@ const streamOnly = import.meta.env.STREAM_ONLY === "true";
<option value="mp4" selected
>{t(Astro, "downloadForm.formatMp4")}</option
>
<option value="audio">{t(Astro, "downloadForm.formatAudio")}</option>
<option value="best">{t(Astro, "downloadForm.formatBest")}</option>
</select>
</div>