Skip to content
1 change: 1 addition & 0 deletions src/components/MediaEditor/MediaEditor.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const sampleTranscript: Transcript = {
const meta: Meta<typeof MediaEditor> = {
title: 'Components/Images & Media/MediaEditor',
component: MediaEditor,
tags: ['autodocs'],
parameters: {
layout: 'fullscreen',
docs: {
Expand Down
13 changes: 11 additions & 2 deletions src/components/MediaEditor/MediaEditorLive.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,16 @@ import {
// Meta
// ============================================================================

const meta: Meta = {
const meta: Meta<typeof MediaEditor> = {
title: 'Components/Images & Media/MediaEditor Live Demo',
component: MediaEditor,
tags: ['autodocs'],
parameters: {
layout: 'fullscreen',
// The story renders the LiveDemo harness, not <MediaEditor {...args}/>,
// so generated controls would not drive it; MediaEditor's own autodocs
// page carries the interactive props table.
controls: { disable: true },
docs: {
description: {
component:
Expand All @@ -33,7 +39,10 @@ const meta: Meta = {
'Whisper model before the first transcription; base.en is the recommended ' +
'default (it preserves inter-word silence gaps, which the silence-editing ' +
'features depend on). Word-level timestamps are requested first, with a ' +
'fallback to segment-level if the model rejects word alignment.',
'fallback to segment-level if the model rejects word alignment. The ' +
'toolbar Script button docks the ScriptPanel: the live edit state as an ' +
'editable YAML/JSON script (Apply pushes changes back through the ' +
'undo-safe replaceEditedWords), alongside the read-only original.',
},
},
},
Expand Down
1 change: 1 addition & 0 deletions src/components/TranscriptView/TranscriptView.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const wordOnlyTranscript: Transcript = {
const meta: Meta<typeof TranscriptView> = {
title: 'Components/Images & Media/TranscriptView',
component: TranscriptView,
tags: ['autodocs'],
parameters: {
layout: 'padded',
docs: {
Expand Down
Loading