is an option for GridVideo and other video functions to specify how to pad video frames when input videos have different durations.
VideoPadding
is an option for GridVideo and other video functions to specify how to pad video frames when input videos have different durations.
Examples
open all close allBasic Examples (2)
Extend a video duration using a constant padding value:
{v1, v2} = {Video["ExampleData/rule30.mp4"], Video["ExampleData/fish.mp4"]};VideoMapList[#Image&, {v1, v2}, VideoPadding -> Green]//LastExtend a video duration by repeating the final frame:
{v1, v2} = {Video["ExampleData/rule30.mp4"], Video["ExampleData/fish.mp4"]};VideoMapList[#Image&, {v1, v2}, VideoPadding -> "Fixed"]//LastScope (1)
Combine a list of videos of different durations using GridVideo:
list = VideoTrim[#, RandomReal[5]]& /@ ResourceData["Cheerleading Video Samples"];Duration[list]When combining them in a grid, shorter videos are by default padded by black frames:
GridVideo[list]//VideoFrameList[#, 3]&Specify a different color padding:
GridVideo[list, VideoPadding -> Orange]//VideoFrameList[#, 3]&Use "Fixed" padding to repeat the final frame:
GridVideo[list, VideoPadding -> "Fixed"]//VideoFrameList[#, 3]&See Also
Related Guides
History
Text
Wolfram Research (2022), VideoPadding, Wolfram Language function, https://reference.wolfram.com/language/ref/VideoPadding.html.
CMS
Wolfram Language. 2022. "VideoPadding." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/VideoPadding.html.
APA
Wolfram Language. (2022). VideoPadding. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/VideoPadding.html
BibTeX
@misc{reference.wolfram_2026_videopadding, author="Wolfram Research", title="{VideoPadding}", year="2022", howpublished="\url{https://reference.wolfram.com/language/ref/VideoPadding.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_videopadding, organization={Wolfram Research}, title={VideoPadding}, year={2022}, url={https://reference.wolfram.com/language/ref/VideoPadding.html}, note=[Accessed: 13-June-2026]}