mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 06:30:03 +00:00
fix: bound HDR and video extraction resources (#2955)
* fix: bound HDR and video extraction resources * fix: trim negative video extraction preroll * fix: skip invisible video extraction windows * fix: preserve negative-start loop and held tails * fix: cap finite video slots to source duration * fix: bound held-tail frame extraction * fix: plan from playable video duration * fix: preserve open-ended held video tails * fix: resolve held tails from decoded frames * fix: normalize final-frame probe timestamps * fix: handle unseekable final-frame sources * fix: dedupe final-frame probes per render * refactor: clarify output dynamic range contract
This commit is contained in:
@@ -66,6 +66,7 @@ export {
|
||||
normalizeVp9CpuUsed,
|
||||
} from "./services/vp9Options.js";
|
||||
export {
|
||||
getCgroupMemoryLimitMb,
|
||||
getSystemTotalMb,
|
||||
isLowMemorySystem,
|
||||
LOW_MEMORY_TOTAL_MB_THRESHOLD,
|
||||
@@ -179,6 +180,11 @@ export {
|
||||
parseImageElements,
|
||||
extractVideoFramesRange,
|
||||
extractAllVideoFrames,
|
||||
resolveTimelineExtractionWindow,
|
||||
resolveVideoExtractionWindow,
|
||||
resolveFinalFrameExtractionWindow,
|
||||
resolveVideoExtractionDuration,
|
||||
resolvePlayableVideoDuration,
|
||||
resolveProjectRelativeSrc,
|
||||
getFrameAtTime,
|
||||
createFrameLookupTable,
|
||||
@@ -194,6 +200,7 @@ export {
|
||||
type ExtractionOptions,
|
||||
type ExtractionResult,
|
||||
type ExtractionPhaseBreakdown,
|
||||
type TimelineExtractionWindow,
|
||||
type VideoExtractionFailure,
|
||||
type VideoExtractionFailureKind,
|
||||
type VideoFrameFormat,
|
||||
@@ -255,6 +262,7 @@ export { readWebGlVendorInfoFromCanvas } from "./utils/readWebGlVendorInfoFromCa
|
||||
export {
|
||||
extractMediaMetadata,
|
||||
extractVideoMetadata,
|
||||
extractFinalVideoFrameTimestamp,
|
||||
extractAudioMetadata,
|
||||
analyzeKeyframeIntervals,
|
||||
type VideoMetadata,
|
||||
|
||||
Reference in New Issue
Block a user