• Estou precisando deixar em alguns dias um transmiss?o do youtube no sistema de TV′s que temos… Quando configuro (mesmo selecionando a op??o no SLIDE de deixar o vídeo até o final) ele é cortado pelo tempo da configura??o do CANAL (que varia de 2 a 120 segundos) n?o tem a op??o de deixar “tempo ilimitado”… como proceder?

    In a few days I need to leave a youtube transmission on the TV system we have… When I configure (even selecting the option on SLIDE to leave the video until the end) it is cut by the time of the CHANNEL configuration (which varies from 2 to 120 seconds) does not have the option to leave “unlimited time”… how to proceed?

Viewing 3 replies - 1 through 3 (of 3 total)
  • estou com o mesmo problema

    I had this issue, and I fixed it by updating my chromium flags.
    I think --autoplay-policy=no-user-gesture-required fixed it, but the full thing ended up being:

    chromium-browser --kiosk --disable-restore-session-state --noerrdialogs --disable-infobars --autoplay-policy=no-user-gesture-required https://localhost/wordpress/index.php/foyer/presentation/

    Pessoal boa tarde,

    Passei pelo mesmo problema

    no diretorio do plugin pasta – > admin

    arquivo: class-foyer-admin-channel.php

    linha: 305

    static function get_slides_duration_options() {
    
    		for ( $sec = 2; $sec <= 20; $sec++ ) {
    			$secs[] = $sec;
    		}
    		for ( $sec = 25; $sec <= 60; $sec += 5 ) {
    			$secs[] = $sec;
    		}
    		for ( $sec = 90; $sec <= 120; $sec += 30 ) {
    			$secs[] = $sec;
    		}

    eu inclui mais 1 for, ficou assim

    static function get_slides_duration_options() {
    
    		for ( $sec = 2; $sec <= 20; $sec++ ) {
    			$secs[] = $sec;
    		}
    		for ( $sec = 25; $sec <= 60; $sec += 5 ) {
    			$secs[] = $sec;
    		}
    		for ( $sec = 90; $sec <= 120; $sec += 30 ) {
    			$secs[] = $sec;
    		}
    
    		for ( $sec = 150; $sec <= 9999; $sec += 30 ) {
    			$secs[] = $sec;
    
            }

    pelo proprio painel do WordPress consegue editar

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Youtube Transmission…’ is closed to new replies.