diff --git a/src/components/video-editor/VideoPlayback.tsx b/src/components/video-editor/VideoPlayback.tsx index 6b2e40a9..6c5b7f0d 100644 --- a/src/components/video-editor/VideoPlayback.tsx +++ b/src/components/video-editor/VideoPlayback.tsx @@ -1043,7 +1043,7 @@ const VideoPlayback = forwardRef(({ return (
- {/* Background layer - always render as DOM element with blur */} + {/* Background layer */}
): Pro return { wallpaper: typeof editor.wallpaper === "string" ? editor.wallpaper : WALLPAPER_PATHS[0], - backgroundTransparency: typeof (editor as Partial).backgroundTransparency === "boolean" - ? (editor as Partial).backgroundTransparency as boolean - : false, shadowIntensity: typeof editor.shadowIntensity === "number" ? editor.shadowIntensity : 0.67, backgroundBlur: normalizedBackgroundBlur, zoomMotionBlur: normalizedZoomMotionBlur, diff --git a/src/lib/exporter/videoExporter.ts b/src/lib/exporter/videoExporter.ts index 110e7503..681df698 100644 --- a/src/lib/exporter/videoExporter.ts +++ b/src/lib/exporter/videoExporter.ts @@ -8,7 +8,6 @@ import type { ZoomRegion, CropRegion, TrimRegion, AnnotationRegion, SpeedRegion, interface VideoExporterConfig extends ExportConfig { videoUrl: string; wallpaper: string; - backgroundTransparency?: boolean; zoomRegions: ZoomRegion[]; trimRegions?: TrimRegion[]; speedRegions?: SpeedRegion[]; @@ -68,7 +67,6 @@ export class VideoExporter { width: this.config.width, height: this.config.height, wallpaper: this.config.wallpaper, - backgroundTransparency: this.config.backgroundTransparency, zoomRegions: this.config.zoomRegions, showShadow: this.config.showShadow, shadowIntensity: this.config.shadowIntensity,