Before you ask please READ THIS

Uploaded video issues

Hello ,

I have some problems about "uploaded videos"
1- i cant add image for video thumb.
2- When i click to watch video (not youtube videos) its opening a lightbox and the video is too small and you can see the loader. I can maximize video and watch it but i cant click next for another video and close lightbox.


Thank you.

http://nicole.s96.upress.link/album/videos/

Comments

  • AirAir
    edited January 2017 Posts: 10,970
    Hello :-)
    lemalaseo said: i cant add image for video thumb.
    You can setup thumb for it as described in docs http://apollo13.eu/docs/thirteen/#!/add_new_album at end of chapter you will see how. Search for "For video item from Media Library you have following options" and you will see :-)
    lemalaseo said: 2- When i click to watch video (not youtube videos) its opening a lightbox
    I see same issue on my installation. I will check what can be wrong. Please be patient.

    With kind regards.
    Post edited by Air on
  • Hi there is some news about the video issue ?
  • AirAir
    Posts: 10,970
    Hi there:-)

    It is waiting in a queue of things to do. I will try to debug it tomorrow.

    With kind regards.
  • Thank you very much for your response I'll bi waiting for debug
  • AirAir
    Posts: 10,970
    I found fix for it :-)

    Go to thirteen\advance\utilities\media.php line ~694
    and change this
    	$html_atts = array(
    		'class'    => '',
    to
    	$html_atts = array(
    		'class'    => 'lg-video-object lg-html5',
    Thanks for patience!

    With kind regards.
  • It worked, thank you very much
  • Hi,

    There is another bugs in video player.

    When i click a video it plays automatically. but plays also another videos that i can hear the sound.


    Also if i click left or right arrow to watch another video, it still plays the old video.


    http://nicole.s96.upress.link/album/videos/ thats the link
  • AirAir
    Posts: 10,970
    Hello there:-)

    I am trying to debug this issue for few hours now with no luck yet. I will reply here when I will find out why it runs all videos at once. Keep your fingers crossed ;-)

    With kind regards.
  • Hi there is new about this bug ?
  • AirAir
    Posts: 10,970
    Sorry but not yet. Unfortunately no one used embeded videos in such way before so no one reported this issue. It looks that it was in for a long time. I will inform you here as soon as I will find fix for this. Meanwhile I advise that you switch to embeded videos in your album.

    With kind regards.
  • Very important for us this video thing.

    Thank you for response
  • AirAir
    edited February 2017 Posts: 10,970
    OK I have found source of issue. It is bug in lightbox that plays all videos that doesn't have poster. It should play only video that is clicked. On our side there is also bug cause we didn't pass info to lightbox where to look for poster.
    Giving lightbox info about poster will stop autoplay of all videos.

    Anyway I will have to write to plugin author and let him know about this issue. As for you quick fix would look like this:

    go to thirteen\advance\cpt_album.php line ~845 and right under this
    
    //prepare images
    list(
    	$collector[ 'main-image' ],
    	$collector[ 'brick_image' ],
    	$collector[ 'thumb' ]
    	) = a13_get_album_item_images($item, $collector, $columns, $bricks_max_width, $brick_margin);
    add this
    //poster for lightbox to use
    $collector[ 'poster' ] = $collector['main-image'];
    Next go to line ~876 and right below
    a13_frontend_gallery_item_html( $collector, $show_desc );
    add this:
    //be safe
    unset($collector);
    It will be also added in next update.

    Thanks for help and patience.

    With kind regards.
    Post edited by Air on
  • Working!! Thank you very much
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!