• Anonymous User 17429174

    (@anonymized-17429174)


    Thanks for this plugin ! It’s absolutely necessary for those who want to offer a good visitor’s experience with self-hosted videos. But, wouldn’t it be nice to add a SD button, like the HD, to inform the users that they can change the video quality ?

Viewing 1 replies (of 1 total)
  • Plugin Author team-ok

    (@team-ok)

    Hi, thanks for your review!
    Personally I don’t think a sd label is necessary (btw, youtube’s player doesn’t have one either).
    But you can easily make one yourself by adding a small css snippet (this one additionally increases the font-size and uses a monospace font-family):

    .svq .mejs-sourcechooser-button button::before, .svq .mejs-sourcechooser-button.hd button::before, .svq .mejs-sourcechooser-button.uhd button::before {
        position: absolute;
        top: 50%;
        right: -3px;
        font-size: 10px;
        font-weight: bold;
        color: #fff;
        background-color: crimson;
        line-height: 8px;
        margin-top: -4px;
        padding: 1px 0;
        width: 15px;
        font-family: monospace;
    }
    .svq .mejs-sourcechooser-button button::before {
        content: 'SD';
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Essential plugin !’ is closed to new replies.