aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/formats.ts
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2022-09-01 15:21:12 +0300
committerGitHub <noreply@github.com>2022-09-01 15:21:12 +0300
commit208d6f25ba127b7c0b91d00a89c9a99358e657dd (patch)
tree14ba64202230675c23910a6c15fb10cc52e8150d /ui/src/app/formats.ts
parentupgraded yt-dlp (diff)
parentSet correct file extension for thumbnails (diff)
downloadmetube-208d6f25ba127b7c0b91d00a89c9a99358e657dd.tar.gz
metube-208d6f25ba127b7c0b91d00a89c9a99358e657dd.tar.bz2
metube-208d6f25ba127b7c0b91d00a89c9a99358e657dd.zip
Merge pull request #148 from 1RandomDev/download-thumbnail
Added option for thumbnail only
Diffstat (limited to 'ui/src/app/formats.ts')
-rw-r--r--ui/src/app/formats.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/src/app/formats.ts b/ui/src/app/formats.ts
index 15be903..a3bf3e8 100644
--- a/ui/src/app/formats.ts
+++ b/ui/src/app/formats.ts
@@ -43,4 +43,11 @@ export const Formats: Format[] = [
{ id: '128', text: '128 kbps' },
],
},
+ {
+ id: 'thumbnail',
+ text: 'Thumbnail',
+ qualities: [
+ { id: 'best', text: 'Best' }
+ ],
+ },
];
bgstack15