Viewing 7 replies - 16 through 22 (of 22 total)
  • Thread Starter sannytcg

    (@sannytcg)

    Hi,

    Yes it is working great but one more question raised that i need to know. As because it a a web radio URL and it has various attributes like playlists/channels, Artist name and few other also.

    Can it be possible to show it when the player playing.

    Thanks Sanny

    Plugin Author Ulrich

    (@grapplerulrich)

    no unfortunately ID3 metadata etc is not supported (yet)

    Thread Starter sannytcg

    (@sannytcg)

    Hi Ulrich,

    Just an issue found, when I resize player to a width it do not work but when I remove it works.

    Here is not working example because of fix width.

    Please let me know.

    Thanks Sanny

    Thread Starter sannytcg

    (@sannytcg)

    Just to add, when I full screen the player it starts playing and continues play even after minimizing the player but when it loads and clicked to play it do no work.

    Thanks Sanny

    Plugin Author Ulrich

    (@grapplerulrich)

    The audio file worked for me on your site. I set the video to fixed with on my site and it worked.

    Thread Starter sannytcg

    (@sannytcg)

    Hi,

    How can I remove the embed option and full screen option from any video. There is no setting to disable this.

    Thanks Sanny

    Plugin Author Ulrich

    (@grapplerulrich)

    There is an option to remove the embed option under the skinning tab.

    For the fullscreen you will need to use a code snippet

    function fp5_js_config( $config, $id ) {
    
    	// Defne setting for video 15
    	if ( '15' == $id ) {
    		$config['fullscreen']    = false;
    	}
    	// Define setting for all videos
    	$config['fullscreen'] = false;
    
    	return $config;
    }
    add_filter( 'fp5_js_config', 'fp5_js_config', 10, 2 );
Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Splash Image to the END’ is closed to new replies.