How to hide progress bar and controls from WP Video ?

Discussion in 'Programming' started by Apipik, Apr 9, 2017.

  1. #1
    I uploaded video to my wordpress post. How to hide progress bar and controls from Video? So that visitors can ONLY use Play/Pause function.

    What do I need to add to the code?

    [video width="640" height="640" mp4="http://mywebsite.org/wp-content/uploads/2017/04/myvideo.mp4"][/video]
    Code (markup):

     
    Apipik, Apr 9, 2017 IP
  2. Hicham EL BADAOUI

    Hicham EL BADAOUI Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #2
    Hi, Apipik
    i want really to help you on that, but i give you some short word use it if your video is about youtube:
    you have link like that: https : // www.youtube .com/embed/XXXXXXXXXX?
    after quation mark type: ?rel=0&amp; <= if you want disable list of similar video in endding
    controls=0 <= if you want disable play/pause bar; but you must delete "rel=0"
    autoplay=0 <= if you want disable the automatic starting play video
    showsearch=0 <= if you want hide search box
    loop=0 <= if you want disable replay saved; when you replay you replay like first time
    ... they are lot of url attribut can be used; but at your position "uploaded video" {i don't know if it possible on wordpress }, you can use this javascript code:
    var video = document.getElementById('myvideo');
    video.control = false;
    :confused:
     
    Hicham EL BADAOUI, Apr 20, 2017 IP