• Hello,

    I have tried your plugin and I found it better that the youtube embed plus…
    Yours is working flawlessly with wordpress popup!

    so I have some idea when you have the time to update this plugin :
    – the possibility to change the volume of the video (like youtube embed plus)
    – add customisation : (add iframe properties like id for example), so it is easier to select it for javascript
    – add delay before autoplay (I wanted to do that by selecting the iframe, and add the autoplay=1 on the src string)

    I hope you find that interesting.

    cheers,
    Ray

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor David Artiss

    (@dartiss)

    Hi @rayman77,

    Thanks for the suggestions ??

    Unfortunately, as I don’t control the video playback but use the standard YouTube player API, I’m unable to implement your first and third suggestion. However, that second one I can do and will add that to the list for the next release.

    Thread Starter rayman77

    (@rayman77)

    oh if you can do the second suggestion.. it’s easy to do the third one ??

    setTimeout(autoPlayVideo, 5000);
    
    function autoPlayVideo() {
      var videoframe = document.getElementById('videoframe');
      videoframe.src = videoframe.src + '?autoplay=1';
    }

    this will add delay to the youtube video with iframe id=”videoframe”

    and for the sound: maybe this will help you ?
    https://developers.google.com/youtube/youtube_player_demo

    thanks for the quick response ??

    Plugin Contributor David Artiss

    (@dartiss)

    Thanks. Extending the capabilities via the API is something I wanted to look at longer term but, for now, I’m concentrating on improving what’s already there. However, I’ll look at this and add it to my list!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘ideas for next version’ is closed to new replies.