Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

How can I have a video over carousel banner in background which keep rolling automatically.

Avatar

Level 3

It should show just carousel banner if the video is not available.

1 Accepted Solution

Avatar

Correct answer by
Level 7

What do you mean with "not avaliable"?

Browser lack support of video formats?
http://camendesign.com/code/video_for_everybody
If you take a look at this guide, it will give you some great info about how to have different kind of fallback for different browsers when it comes to videos.
There they explain how to have a standard htlm5 video with flash fallback. If the client doesn't support flash, an image is displayed, that could be the banner you were talking about.

Video not avaliable in the dam?
If the video you are trying to show is located in the DAM, but somehow not working/is found, you have to have some kind code that checks for this. The code could fetch a video asset, check if everything is ok with it. If everything is allright, go ahead and display the video. If not, try to fetch the fallback image asset of your choice instead and display that one.

@smacdonald2008 has some good links there how to stard with the 3rd party plugins, and then try to customize it with something similar to the two hits above.
Good luck
/Johan

View solution in original post

2 Replies

Avatar

Correct answer by
Level 7

What do you mean with "not avaliable"?

Browser lack support of video formats?
http://camendesign.com/code/video_for_everybody
If you take a look at this guide, it will give you some great info about how to have different kind of fallback for different browsers when it comes to videos.
There they explain how to have a standard htlm5 video with flash fallback. If the client doesn't support flash, an image is displayed, that could be the banner you were talking about.

Video not avaliable in the dam?
If the video you are trying to show is located in the DAM, but somehow not working/is found, you have to have some kind code that checks for this. The code could fetch a video asset, check if everything is ok with it. If everything is allright, go ahead and display the video. If not, try to fetch the fallback image asset of your choice instead and display that one.

@smacdonald2008 has some good links there how to stard with the 3rd party plugins, and then try to customize it with something similar to the two hits above.
Good luck
/Johan

Avatar

Level 10

One option you have is to use 3rd party JQuery plug-in. See http://www.1stwebdesigner.com/freebies/jquery-carousel-plugins-tutorials/.

We have examples of using JQuery and AEM:
1 - http://helpx.adobe.com/adobe-cq/using/integrating-jquery-framework-cq.html

2- http://helpx.adobe.com/adobe-cq/using/creating-gallery-components.html

We will pass on this specific workflow to our team and we can create an AEM article that will show you step by step instructions on how to build a custom AEM component based on this requirement.