@shotstack/shotstack-canvas 2.0.10 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entry.node.cjs +2623 -2612
- package/dist/entry.node.d.cts +13 -3
- package/dist/entry.node.d.ts +13 -3
- package/dist/entry.node.js +2617 -2612
- package/dist/entry.web.d.ts +13 -2
- package/dist/entry.web.js +2848 -2824
- package/package.json +65 -65
package/dist/entry.node.d.cts
CHANGED
|
@@ -1060,6 +1060,11 @@ declare function renderSvgAssetToPng(asset: CanvasSvgAsset, options?: {
|
|
|
1060
1060
|
background?: string;
|
|
1061
1061
|
}): Promise<ResvgRenderResult>;
|
|
1062
1062
|
|
|
1063
|
+
declare const ASCENT_RATIO = 0.8;
|
|
1064
|
+
declare const DESCENT_RATIO = 0.2;
|
|
1065
|
+
declare const WORD_BG_OPACITY = 1;
|
|
1066
|
+
declare const WORD_BG_BORDER_RADIUS = 4;
|
|
1067
|
+
declare const WORD_BG_PADDING_RATIO = 0.12;
|
|
1063
1068
|
interface RichCaptionGeneratorConfig {
|
|
1064
1069
|
frameWidth: number;
|
|
1065
1070
|
frameHeight: number;
|
|
@@ -1093,7 +1098,13 @@ interface BackgroundConfig {
|
|
|
1093
1098
|
borderRadius: number;
|
|
1094
1099
|
padding: number;
|
|
1095
1100
|
}
|
|
1096
|
-
declare function
|
|
1101
|
+
declare function extractCaptionPadding(asset: CanvasRichCaptionAsset): {
|
|
1102
|
+
top: number;
|
|
1103
|
+
right: number;
|
|
1104
|
+
bottom: number;
|
|
1105
|
+
left: number;
|
|
1106
|
+
};
|
|
1107
|
+
declare function generateRichCaptionDrawOps(asset: CanvasRichCaptionAsset, layout: CaptionLayout, frameTimeMs: number, layoutEngine: CaptionLayoutEngine, config: RichCaptionGeneratorConfig): DrawOp[];
|
|
1097
1108
|
declare function generateRichCaptionFrame(asset: CanvasRichCaptionAsset, layout: CaptionLayout, frameTimeMs: number, layoutEngine: CaptionLayoutEngine, config: RichCaptionGeneratorConfig): {
|
|
1098
1109
|
ops: DrawOp[];
|
|
1099
1110
|
visibleWordCount: number;
|
|
@@ -1184,7 +1195,6 @@ declare class RichCaptionRenderer {
|
|
|
1184
1195
|
getStats(): RenderStats;
|
|
1185
1196
|
resetStats(): void;
|
|
1186
1197
|
clearCache(): void;
|
|
1187
|
-
private extractPadding;
|
|
1188
1198
|
private mapVerticalAlign;
|
|
1189
1199
|
private mapHorizontalAlign;
|
|
1190
1200
|
private extractAnimationStyle;
|
|
@@ -1319,4 +1329,4 @@ declare function createTextEngine(opts?: {
|
|
|
1319
1329
|
destroy(): void;
|
|
1320
1330
|
}>;
|
|
1321
1331
|
|
|
1322
|
-
export { type AnimationDirection, type AnimationStyle, type ArcCommand, type BackgroundConfig, type BoundingBox, type CanvasRichCaptionAsset, CanvasRichCaptionAssetSchema, type CanvasRichTextAsset, CanvasRichTextAssetSchema, type CanvasSvgAsset, CanvasSvgAssetSchema, type CaptionGroup, type CaptionLayout, type CaptionLayoutConfig, CaptionLayoutEngine, type CaptionLine, type ClosePathCommand, type CubicBezierCommand, type DrawOp, type EngineInit, type FastVideoOptions, type FastVideoResult, type FontConfig, FontRegistry, type FrameSchedule, type Glyph, type GradientSpec, type IVideoEncoder, type LineToCommand, type MoveToCommand, NodeRawEncoder, type NormalizedPathCommand, type ParsedPathCommand, type PathCommandType, type Point2D, type PositionedWord, type QuadraticBezierCommand, type RGBA, type RenderFrame, type RenderStats, type Renderer, type ResvgRenderOptions, type ResvgRenderResult, type RichCaptionGeneratorConfig, RichCaptionRenderer, type RichCaptionRendererOptions, type ShadowConfig, type ShapedLine, type ShapedWord, type ShapedWordGlyph, type ShotstackRichTextAsset, type ShotstackSvgAsset, type StrokeConfig, type StrokeSpec, type ValidAsset, type VideoEncoderCapabilities, type VideoEncoderConfig, type VideoEncoderProgress, type WordAnimationConfig, type WordAnimationState, type WordTiming, WordTimingStore, arcToCubicBeziers, breakIntoLines, calculateAnimationStatesForGroup, commandsToPathString, computeSimplePathBounds, createDefaultGeneratorConfig, createFrameSchedule, createNodePainter, createNodeRawEncoder, createRichCaptionRenderer, createTextEngine, createVideoEncoder, detectPlatform, detectSubtitleFormat, findWordAtTime, generateRichCaptionDrawOps, generateRichCaptionFrame, generateShapePathData, getDefaultAnimationConfig, getDrawCaptionWordOps, getEncoderCapabilities, getEncoderWarning, groupWordsByPause, isDrawCaptionWordOp, isRTLText, isWebCodecsH264Supported, normalizePath, normalizePathString, parseSubtitleToWords, parseSvgPath, quadraticToCubic, renderSvgAssetToPng, renderSvgToPng, richCaptionAssetSchema, shapeToSvgString };
|
|
1332
|
+
export { ASCENT_RATIO, type AnimationDirection, type AnimationStyle, type ArcCommand, type BackgroundConfig, type BoundingBox, type CanvasRichCaptionAsset, CanvasRichCaptionAssetSchema, type CanvasRichTextAsset, CanvasRichTextAssetSchema, type CanvasSvgAsset, CanvasSvgAssetSchema, type CaptionGroup, type CaptionLayout, type CaptionLayoutConfig, CaptionLayoutEngine, type CaptionLine, type ClosePathCommand, type CubicBezierCommand, DESCENT_RATIO, type DrawOp, type EngineInit, type FastVideoOptions, type FastVideoResult, type FontConfig, FontRegistry, type FrameSchedule, type Glyph, type GradientSpec, type IVideoEncoder, type LineToCommand, type MoveToCommand, NodeRawEncoder, type NormalizedPathCommand, type ParsedPathCommand, type PathCommandType, type Point2D, type PositionedWord, type QuadraticBezierCommand, type RGBA, type RenderFrame, type RenderStats, type Renderer, type ResvgRenderOptions, type ResvgRenderResult, type RichCaptionGeneratorConfig, RichCaptionRenderer, type RichCaptionRendererOptions, type ShadowConfig, type ShapedLine, type ShapedWord, type ShapedWordGlyph, type ShotstackRichTextAsset, type ShotstackSvgAsset, type StrokeConfig, type StrokeSpec, type ValidAsset, type VideoEncoderCapabilities, type VideoEncoderConfig, type VideoEncoderProgress, WORD_BG_BORDER_RADIUS, WORD_BG_OPACITY, WORD_BG_PADDING_RATIO, type WordAnimationConfig, type WordAnimationState, type WordTiming, WordTimingStore, arcToCubicBeziers, breakIntoLines, calculateAnimationStatesForGroup, commandsToPathString, computeSimplePathBounds, createDefaultGeneratorConfig, createFrameSchedule, createNodePainter, createNodeRawEncoder, createRichCaptionRenderer, createTextEngine, createVideoEncoder, detectPlatform, detectSubtitleFormat, extractCaptionPadding, findWordAtTime, generateRichCaptionDrawOps, generateRichCaptionFrame, generateShapePathData, getDefaultAnimationConfig, getDrawCaptionWordOps, getEncoderCapabilities, getEncoderWarning, groupWordsByPause, isDrawCaptionWordOp, isRTLText, isWebCodecsH264Supported, normalizePath, normalizePathString, parseSubtitleToWords, parseSvgPath, quadraticToCubic, renderSvgAssetToPng, renderSvgToPng, richCaptionAssetSchema, shapeToSvgString };
|
package/dist/entry.node.d.ts
CHANGED
|
@@ -1060,6 +1060,11 @@ declare function renderSvgAssetToPng(asset: CanvasSvgAsset, options?: {
|
|
|
1060
1060
|
background?: string;
|
|
1061
1061
|
}): Promise<ResvgRenderResult>;
|
|
1062
1062
|
|
|
1063
|
+
declare const ASCENT_RATIO = 0.8;
|
|
1064
|
+
declare const DESCENT_RATIO = 0.2;
|
|
1065
|
+
declare const WORD_BG_OPACITY = 1;
|
|
1066
|
+
declare const WORD_BG_BORDER_RADIUS = 4;
|
|
1067
|
+
declare const WORD_BG_PADDING_RATIO = 0.12;
|
|
1063
1068
|
interface RichCaptionGeneratorConfig {
|
|
1064
1069
|
frameWidth: number;
|
|
1065
1070
|
frameHeight: number;
|
|
@@ -1093,7 +1098,13 @@ interface BackgroundConfig {
|
|
|
1093
1098
|
borderRadius: number;
|
|
1094
1099
|
padding: number;
|
|
1095
1100
|
}
|
|
1096
|
-
declare function
|
|
1101
|
+
declare function extractCaptionPadding(asset: CanvasRichCaptionAsset): {
|
|
1102
|
+
top: number;
|
|
1103
|
+
right: number;
|
|
1104
|
+
bottom: number;
|
|
1105
|
+
left: number;
|
|
1106
|
+
};
|
|
1107
|
+
declare function generateRichCaptionDrawOps(asset: CanvasRichCaptionAsset, layout: CaptionLayout, frameTimeMs: number, layoutEngine: CaptionLayoutEngine, config: RichCaptionGeneratorConfig): DrawOp[];
|
|
1097
1108
|
declare function generateRichCaptionFrame(asset: CanvasRichCaptionAsset, layout: CaptionLayout, frameTimeMs: number, layoutEngine: CaptionLayoutEngine, config: RichCaptionGeneratorConfig): {
|
|
1098
1109
|
ops: DrawOp[];
|
|
1099
1110
|
visibleWordCount: number;
|
|
@@ -1184,7 +1195,6 @@ declare class RichCaptionRenderer {
|
|
|
1184
1195
|
getStats(): RenderStats;
|
|
1185
1196
|
resetStats(): void;
|
|
1186
1197
|
clearCache(): void;
|
|
1187
|
-
private extractPadding;
|
|
1188
1198
|
private mapVerticalAlign;
|
|
1189
1199
|
private mapHorizontalAlign;
|
|
1190
1200
|
private extractAnimationStyle;
|
|
@@ -1319,4 +1329,4 @@ declare function createTextEngine(opts?: {
|
|
|
1319
1329
|
destroy(): void;
|
|
1320
1330
|
}>;
|
|
1321
1331
|
|
|
1322
|
-
export { type AnimationDirection, type AnimationStyle, type ArcCommand, type BackgroundConfig, type BoundingBox, type CanvasRichCaptionAsset, CanvasRichCaptionAssetSchema, type CanvasRichTextAsset, CanvasRichTextAssetSchema, type CanvasSvgAsset, CanvasSvgAssetSchema, type CaptionGroup, type CaptionLayout, type CaptionLayoutConfig, CaptionLayoutEngine, type CaptionLine, type ClosePathCommand, type CubicBezierCommand, type DrawOp, type EngineInit, type FastVideoOptions, type FastVideoResult, type FontConfig, FontRegistry, type FrameSchedule, type Glyph, type GradientSpec, type IVideoEncoder, type LineToCommand, type MoveToCommand, NodeRawEncoder, type NormalizedPathCommand, type ParsedPathCommand, type PathCommandType, type Point2D, type PositionedWord, type QuadraticBezierCommand, type RGBA, type RenderFrame, type RenderStats, type Renderer, type ResvgRenderOptions, type ResvgRenderResult, type RichCaptionGeneratorConfig, RichCaptionRenderer, type RichCaptionRendererOptions, type ShadowConfig, type ShapedLine, type ShapedWord, type ShapedWordGlyph, type ShotstackRichTextAsset, type ShotstackSvgAsset, type StrokeConfig, type StrokeSpec, type ValidAsset, type VideoEncoderCapabilities, type VideoEncoderConfig, type VideoEncoderProgress, type WordAnimationConfig, type WordAnimationState, type WordTiming, WordTimingStore, arcToCubicBeziers, breakIntoLines, calculateAnimationStatesForGroup, commandsToPathString, computeSimplePathBounds, createDefaultGeneratorConfig, createFrameSchedule, createNodePainter, createNodeRawEncoder, createRichCaptionRenderer, createTextEngine, createVideoEncoder, detectPlatform, detectSubtitleFormat, findWordAtTime, generateRichCaptionDrawOps, generateRichCaptionFrame, generateShapePathData, getDefaultAnimationConfig, getDrawCaptionWordOps, getEncoderCapabilities, getEncoderWarning, groupWordsByPause, isDrawCaptionWordOp, isRTLText, isWebCodecsH264Supported, normalizePath, normalizePathString, parseSubtitleToWords, parseSvgPath, quadraticToCubic, renderSvgAssetToPng, renderSvgToPng, richCaptionAssetSchema, shapeToSvgString };
|
|
1332
|
+
export { ASCENT_RATIO, type AnimationDirection, type AnimationStyle, type ArcCommand, type BackgroundConfig, type BoundingBox, type CanvasRichCaptionAsset, CanvasRichCaptionAssetSchema, type CanvasRichTextAsset, CanvasRichTextAssetSchema, type CanvasSvgAsset, CanvasSvgAssetSchema, type CaptionGroup, type CaptionLayout, type CaptionLayoutConfig, CaptionLayoutEngine, type CaptionLine, type ClosePathCommand, type CubicBezierCommand, DESCENT_RATIO, type DrawOp, type EngineInit, type FastVideoOptions, type FastVideoResult, type FontConfig, FontRegistry, type FrameSchedule, type Glyph, type GradientSpec, type IVideoEncoder, type LineToCommand, type MoveToCommand, NodeRawEncoder, type NormalizedPathCommand, type ParsedPathCommand, type PathCommandType, type Point2D, type PositionedWord, type QuadraticBezierCommand, type RGBA, type RenderFrame, type RenderStats, type Renderer, type ResvgRenderOptions, type ResvgRenderResult, type RichCaptionGeneratorConfig, RichCaptionRenderer, type RichCaptionRendererOptions, type ShadowConfig, type ShapedLine, type ShapedWord, type ShapedWordGlyph, type ShotstackRichTextAsset, type ShotstackSvgAsset, type StrokeConfig, type StrokeSpec, type ValidAsset, type VideoEncoderCapabilities, type VideoEncoderConfig, type VideoEncoderProgress, WORD_BG_BORDER_RADIUS, WORD_BG_OPACITY, WORD_BG_PADDING_RATIO, type WordAnimationConfig, type WordAnimationState, type WordTiming, WordTimingStore, arcToCubicBeziers, breakIntoLines, calculateAnimationStatesForGroup, commandsToPathString, computeSimplePathBounds, createDefaultGeneratorConfig, createFrameSchedule, createNodePainter, createNodeRawEncoder, createRichCaptionRenderer, createTextEngine, createVideoEncoder, detectPlatform, detectSubtitleFormat, extractCaptionPadding, findWordAtTime, generateRichCaptionDrawOps, generateRichCaptionFrame, generateShapePathData, getDefaultAnimationConfig, getDrawCaptionWordOps, getEncoderCapabilities, getEncoderWarning, groupWordsByPause, isDrawCaptionWordOp, isRTLText, isWebCodecsH264Supported, normalizePath, normalizePathString, parseSubtitleToWords, parseSvgPath, quadraticToCubic, renderSvgAssetToPng, renderSvgToPng, richCaptionAssetSchema, shapeToSvgString };
|