Skip to content
Permalink
f681d64416
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
88 lines (80 sloc) 2.72 KB
<script lang="ts">
import settings from "$lib/state/settings";
import { t } from "$lib/i18n/translations";
import { videoQualityOptions } from "$lib/types/settings";
import { youtubeVideoCodecOptions } from "$lib/types/settings";
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
import Switcher from "$components/buttons/Switcher.svelte";
import SettingsButton from "$components/buttons/SettingsButton.svelte";
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
const codecTitles = {
h264: "h264 (mp4)",
av1: "av1 (webm)",
vp9: "vp9 (webm)",
}
</script>
<SettingsCategory
sectionId="quality"
title={$t("settings.video.quality")}
>
<Switcher big={true} description={$t("settings.video.quality.description")}>
{#each videoQualityOptions as value}
<SettingsButton
settingContext="save"
settingId="videoQuality"
settingValue={value}
>
{$t(`settings.video.quality.${value}`)}
</SettingsButton>
{/each}
</Switcher>
</SettingsCategory>
<SettingsCategory
sectionId="youtube-codec"
title={$t("settings.video.youtube.codec")}
>
<Switcher
big={true}
description={$t("settings.video.youtube.codec.description")}
>
{#each youtubeVideoCodecOptions as value}
<SettingsButton
settingContext="save"
settingId="youtubeVideoCodec"
settingValue={value}
>
{codecTitles[value]}
</SettingsButton>
{/each}
</Switcher>
</SettingsCategory>
<SettingsCategory
sectionId="youtube-hls"
title={$t("settings.video.youtube.hls")}
disabled={$settings.save.youtubeVideoCodec === "av1"}
beta
>
<SettingsToggle
settingContext="save"
settingId="youtubeHLS"
title={$t("settings.video.youtube.hls.title")}
description={$t("settings.video.youtube.hls.description")}
disabled={$settings.save.youtubeVideoCodec === "av1"}
/>
</SettingsCategory>
<SettingsCategory sectionId="twitter" title={$t("settings.video.twitter.gif")}>
<SettingsToggle
settingContext="save"
settingId="twitterGif"
title={$t("settings.video.twitter.gif.title")}
description={$t("settings.video.twitter.gif.description")}
/>
</SettingsCategory>
<SettingsCategory sectionId="tiktok" title={$t("settings.video.tiktok.h265")}>
<SettingsToggle
settingContext="save"
settingId="tiktokH265"
title={$t("settings.video.tiktok.h265.title")}
description={$t("settings.video.tiktok.h265.description")}
/>
</SettingsCategory>