gradio/js/video
Gradio PR Bot c5ae60780c
chore: update versions (#10082)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-04 15:04:48 -08:00
..
shared add webcam_height and webcam_width to specify the resolution of the Webcam (#10032) 2024-12-03 19:01:47 -05:00
CHANGELOG.md chore: update versions (#10082) 2024-12-04 15:04:48 -08:00
Example.svelte 5.0 dev -> main (#8843) 2024-10-08 22:17:17 -07:00
Index.svelte add webcam_height and webcam_width to specify the resolution of the Webcam (#10032) 2024-12-03 19:01:47 -05:00
index.ts
package.json chore: update versions (#10082) 2024-12-04 15:04:48 -08:00
README.md
Video.stories.svelte
Video.test.ts Fix published package exports (#9163) 2024-08-22 16:38:45 +00:00

@gradio/video

<script>
	import { BaseInteractiveVideo, BaseStaticVideo, BasePlayer } from "@gradio/button";
	import type { FileData } from "@gradio/upload";
	import type { Gradio } from "@gradio/utils";
	export let _video: FileData;
</script>

<StaticVideo
	value={_video}
	{label}
	{show_label}
	{autoplay}
	{show_share_button}
	i18n={gradio.i18n}
/>

<Video
	value={_video}
	{label}
	{show_label}
	source={"upload"}
	{mirror_webcam}
	{include_audio}
	{autoplay}
	i18n={gradio.i18n}
>
	<p>Upload Video Here</p>
</Video>

<BasePlayer
	src={value.data}
	{autoplay}
	on:play
	on:pause
	on:stop
	on:end
	mirror={false}
	{label}
/>