diff --git a/src/assets/locales/en.json b/src/assets/locales/en.json
index 042cbe91..f0ef16ea 100644
--- a/src/assets/locales/en.json
+++ b/src/assets/locales/en.json
@@ -188,8 +188,9 @@
"downloads": {
"title": "Download",
"disclaimer": "Downloads are taken directly from the provider. movie-web does not have control over how the downloads are provided.",
- "hlsExplanation": "This media is a HLS stream which cannot be downloaded on movie-web.",
+ "hlsDisclaimer": "Downloads are taken directly from the provider. movie-web does not have control over how the downloads are provided. Please note that you are downloading an HLS playlist, this is intended for users familiar with advanced multimedia streaming.",
"downloadVideo": "Download video",
+ "downloadPlaylist": "Download playlist",
"downloadCaption": "Download current caption",
"onPc": {
"1": "On PC, click the download button then, on the new page, right click the video and select Save video as",
diff --git a/src/components/player/atoms/settings/Downloads.tsx b/src/components/player/atoms/settings/Downloads.tsx
index 73bcf24a..4a7dcef2 100644
--- a/src/components/player/atoms/settings/Downloads.tsx
+++ b/src/components/player/atoms/settings/Downloads.tsx
@@ -15,6 +15,7 @@ function useDownloadLink() {
const url = useMemo(() => {
if (source?.type === "file" && currentQuality)
return source.qualities[currentQuality]?.url ?? null;
+ if (source?.type === "hls") return source.url;
return null;
}, [source, currentQuality]);
return url;
@@ -42,6 +43,7 @@ export function DownloadView({ id }: { id: string }) {
const { t } = useTranslation();
const downloadUrl = useDownloadLink();
+ const sourceType = usePlayerStore((s) => s.source?.type);
const selectedCaption = usePlayerStore((s) => s.caption?.selected);
const subtitleUrl = useMemo(
() =>
@@ -60,36 +62,61 @@ export function DownloadView({ id }: { id: string }) {