gradio/js/video/Video.stories.svelte

42 lines
1.0 KiB
Svelte

<script>
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
import Video from "./interactive";
</script>
<Meta
title="Components/Video"
component={Video}
argTypes={{
video: {
control: "text",
description:
"A path or URL for the default value that Video component is going to take. Can also be a tuple consisting of (video filepath, subtitle filepath). If a subtitle file is provided, it should be of type .srt or .vtt. Or can be callable, in which case the function will be called whenever the app loads to set the initial value of the component.",
name: "value"
},
autoplay: {
control: [true, false],
description: "Whether to autoplay the video on load",
name: "autoplay",
value: true
}
}}
/>
<Template let:args>
<Video {...args} />
</Template>
<Story
name="Primary"
args={{
value: ["https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4"],
format: "mp4",
label: "world video",
show_label: true,
interactive: true,
autoplay: true,
height: 400,
width: 400
}}
/>