Spatial video and Spatial photo in mov format in aem | Community
Skip to main content
Level 2
January 29, 2025
Solved

Spatial video and Spatial photo in mov format in aem

  • January 29, 2025
  • 1 reply
  • 404 views

I want to upload/create renditions for spatial video and photo in mov format in AEM dam. Could you please help me that how can I achieve it.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by sarav_prakash

@sekharbu1 Your this question is same as your previous question https://experienceleaguecommunities.adobe.com/t5/adobe-developer-questions/investigating-the-use-of-heic-assets-in-aem/td-p/733329.

 

Browser support for .mov is poor. Refer to SOF here

You can always upload and return mov as raw binary. In your default_filters.any in dispatcher, make sure to allow your extensions like this 

/0107 { /type "allow" /extension '(doc|docx|xlsx|xls|csv|mht|mp3|ppt|pptx|txt|renditions|psd|pdf|tiff|tif|heic|mov)' /path '/content/dam/(web)/.*' }

And then on .html try 

<video width="1280" height="720">
  <source src="lightbulbs-h264.mov" type="video/quicktime">
  No video support.
</video>

only safari on mac works as per here

1 reply

sarav_prakash
Community Advisor
sarav_prakashCommunity AdvisorAccepted solution
Community Advisor
February 10, 2025

@sekharbu1 Your this question is same as your previous question https://experienceleaguecommunities.adobe.com/t5/adobe-developer-questions/investigating-the-use-of-heic-assets-in-aem/td-p/733329.

 

Browser support for .mov is poor. Refer to SOF here

You can always upload and return mov as raw binary. In your default_filters.any in dispatcher, make sure to allow your extensions like this 

/0107 { /type "allow" /extension '(doc|docx|xlsx|xls|csv|mht|mp3|ppt|pptx|txt|renditions|psd|pdf|tiff|tif|heic|mov)' /path '/content/dam/(web)/.*' }

And then on .html try 

<video width="1280" height="720">
  <source src="lightbulbs-h264.mov" type="video/quicktime">
  No video support.
</video>

only safari on mac works as per here