You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, when video output configuration was incompatible with the
asset, setupVideoOutput would silently return and the export would
continue with only audio tracks. This caused intermittent reports of
videos exporting without video content.
Changes:
- Add validation to detect when video setup fails for assets with video tracks
- Fail fast with clear error: "Video output configuration is not compatible"
- Track setup errors and surface them through completion handler
- Document issue and common causes in README troubleshooting section
- Remove unused Photos import
Fixes#38
// Mark video setup as failed - this will cause the export to fail with a clear error
415
+
self._videoSetupFailed =true
416
+
self._videoSetupError =NextLevelSessionExporterError.invalidConfiguration("Video output configuration is not compatible with this asset. The writer cannot apply the specified video settings.")
417
+
print("NextLevelSessionExporter, video output configuration is not supported by the writer")
0 commit comments