• tigervilja

    (@tigervilja)


    Hello and thank you for a great plugin BUT I only want audioplayer, no video from youtube.
    It works fine when on my mac and browsing using Chrome, the player window is there.
    But when I switch to my Ipad I find a small video window playing the song.

    How I have implemented the plugin is by pasting like below substituting https for httpa

    Is there something I can do to fix this?

    Thank you again for stellar plugin!

    Example:
    httpa://www.youtube.com/watch?v=8XusG3RUlC4
    Embedding this in post shows audio player only (as wanted) on mac BUT on Ipad this gives a video window playing the song..

Viewing 1 replies (of 1 total)
  • Plugin Author Frank Goossens

    (@futtta)

    audio-only has limited support indeed I’m afraid @tigervilja (YT’s TOS even states you should always show the entire video) and this is even more the case on mobile, which by default loads a normal youtube embed (for reasons explained in the FAQ). you could try forcing Lyte to load a lyte-player on mobile as well using this code-snippet;

    
    add_filter('lyte_do_mobile','lyte_on_mobile',10,0);
    function lyte_on_mobile(){
        return true;
    }

    at which point audio-only might work on ipad as well (but it might not as well).

    frank

Viewing 1 replies (of 1 total)
  • The topic ‘Audio only not working on Ipad’ is closed to new replies.