Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Auto replay video

Explorer ,
May 17, 2021 May 17, 2021

Hello,

 

I have checked the auto replay button as well as autoplay. It plays once automatically just fine. Any way to have it replay automatically while the user is still on the slide?

 

Thanks for your help!

1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 17, 2021 May 17, 2021

Have a look at my blog post:

Looping Slide Video - eLearning (adobe.com)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 17, 2021 May 17, 2021

Thanks again Lilybiri.

 

So the only way is to rewind the slide, like your example? It causes a stutter that is not quite what we want. No way to just make the video reload and not the whole slide rewind?

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2021 May 18, 2021

Yes, if it is slide video, since that video can be controlled by Captivate. What is the problem? You don't reload the video, you just get back to the start of it.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2021 May 18, 2021
  1. Add your video to your slide as Event Video
  2. Make sure the slide doesn't play automatically to the end of the slide by adding a button that pauses the slide before the end of the slide. For example, a shape used as a button to take you to the next slide when you're ready. The looping feature doesn't work if your slide plays to the end of the slide without being paused.
  3. Select Auto Play if you are not using a skin (playbar)
  4. Navigate to the Timing panel and uncheck Pause slide till end of video.
  5. Select Loop

 

Generally, I prefer slide video over event video for a number of reasons. For example, Slide Video allows for Closed Captioning and will play in sync with the rest of your Adobe Captivate project, but if you need the video to just keep running in a loop indefinately this is how you can do it.

Paul Wilson, CTDP
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
People's Champ ,
May 18, 2021 May 18, 2021
LATEST

I don't know why Captivates loop doesn't work, but if you execute this JS on slide enter, it will loop your video:

 

var interval = setInterval( checkExists, 100 );

function checkExists()
{
if ( document.getElementsByTagName( 'video' ).length > 0 )
{
clearInterval( interval );
var vid = document.getElementsByTagName( 'video' )[ 0 ];
vid.loop = true;
}
}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Help resources