We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c77b6a5 commit 842a036Copy full SHA for 842a036
packages/webui/src/client/ui/FloatingInspectors/VTFloatingInspector.tsx
@@ -110,8 +110,9 @@ export const VTFloatingInspector: React.FC<IProps> = ({
110
const { t } = useTranslation()
111
const inspectorRef = useRef<HTMLDivElement>(null)
112
113
+ // Display a "blank" video canvas when setting ?ignore_piece_content_status=1
114
const debugMode = getIgnorePieceContentStatus()
- const playPreviewUrl = debugMode ? 'http://some-ip-here:3000/preview.mp4' : previewUrl || ''
115
+ const playPreviewUrl = debugMode ? 'http://dummy-video/no-video.mp4' : previewUrl || ''
116
117
const itemDuration = content?.sourceDuration || renderedDuration || 0
118
const seek = content?.seek ?? 0
0 commit comments