Skip to main content
Version: 2026.1

Video Thumbnails

Pimcore can convert any video to web formats automatically. It can also capture a custom preview image from the video.

IMPORTANT To use all the following functionalities, you must install FFMPEG on the server. It is pre-installed in the official Pimcore Docker images; for details, see System Requirements.

Explanation of the Transformations

The transformations are adapters for the FFMPEG Filters and Options and most of the configuration is equivalent.

TransformationDescriptionFFMPEG-Filter
ORIGINAL VIDEOThis is the video which is used in the following transformationsNONE ;-)
COLOR CHANNEL MIXERAdjust video input frames by re-mixing color channels-fv colorchannelmixer
SET FRAMERATEConvert the video to specified constant frame rate by duplicating or dropping frames as necessary-fv fps
CUTSet video starting and ending position-ss and -t
MUTERemove the audio stream-an

Using Video Thumbnails in Your Code

Examples - Image Snapshots

$asset = Asset::getById(123);
if($asset instanceof Asset\Video) {

// get a preview image thumbnail of the video, resized to the configuration of "myThumbnail"
echo $asset->getImageThumbnail("myThumbnail");

// get a snapshot (image) out of the video at the time of 10 secs. (see second parameter)
// using a dynamic image thumbnail configuration
echo $asset->getImageThumbnail(["width" => 250], 10);
}

Examples - Video Transcoding

getThumbnail() returns an array with a status key (finished, inprogress, or failure) and, when finished, a formats key containing paths to the transcoded files.

$asset = Asset::getById(123);
if($asset instanceof Asset\Video) {

$thumbnail = $asset->getThumbnail("myVideoThumbnail"); // returns an array
if($thumbnail["status"] == "finished") {
p_r($thumbnail["formats"]); // transcoding finished, print the paths to the different formats
/*
OUTPUTS:
Array(
"mp4" => "/Sample%20Content/Videos/123/video-thumb__123__myVideoThumbnail...mp4",
"webm" => "/Sample%20Content/Videos/123/video-thumb__123__myVideoThumbnail...webm"
)
*/
} else if ($thumbnail["status"] == "inprogress") {
echo "transcoding in progress, please wait ...";
} else {
echo "transcoding failed :(";
}
}

Adaptive Bitrate Video-Streaming

This feature generates a MPEG-DASH (.mpd) file for adaptive bitrate video-streaming.

When you define transformations based on bitrates in the thumbnail config, the .mpd file is generated with bitrate streams. The .mpd file is referenced in the generated <video> tag.

You need to include a polyfill for all major browsers to support adaptive bitrate video-streaming: https://github.com/Dash-Industry-Forum/dash.js

{{ pimcore_video('campaignVideo', {
width: auto,
height: auto,
thumbnail: 'new'
}) }}

generates:

<video width="100%" height="auto" controls="controls" class="pimcore_video" preload="auto" src="blob:http://xyz/01f91372-ddd8-4d3f-ac85-e420432d9704">
<source type="video/mp4" src="/videodata/955/video-thumb__955__campaignVideo/Volkswagen-Van.mp4">
<source type="application/dash+xml" src="/videodata/955/video-thumb__955__campaignVideo/Volkswagen-Van.mpd">
</video>

Using with the Video Editable

See Video Editable.