This is a message.

Content Plugin - Subtitles not displaying properly Created Feb 14, 2010

This thread is solved

Views: 2215     Replies: 3     Last reply Feb 17, 2010  
You must login first before you can use this feature

flvzuploader

Posts: 2

Registered:
Feb 14, 2010

Content Plugin - Subtitles not displaying properly

Posted: Feb 14, 2010

Hello,

I would like to know why the .srt subtitles aren't displaying on multiple lines? Also is there anyway the subtitle could be automatically resized bigger when the user switch to fullscreen? Maybe an even to change font-size on fullscreen or something like that ?

Regards.

flvzuploader

Posts: 2

Registered:
Feb 14, 2010

» Content Plugin - Subtitles not displaying properly

Posted: Feb 15, 2010

Reply to: Content Plugin - Subtitles not displaying properly, from flvzuploader
anyone has any idea?

Chetan Sachdev
-- http://riageeks.com

Posts: 62

Registered:
Jan 27, 2010

» » Content Plugin - Subtitles not displaying properly

Posted: Feb 17, 2010

Reply to: » Content Plugin - Subtitles not displaying properly, from flvzuploader
Could you please provide the link, to see this issue ?

Thanks

--
Chetan
http://riageeks.com

dherbst

Posts: 75

Registered:
Apr 20, 2009

» Content Plugin - Subtitles not displaying properly

Posted: Feb 17, 2010

Reply to: Content Plugin - Subtitles not displaying properly, from flvzuploader
You can resize the font by using the onFullscreen/onFullscreenExit callbacks:


flowplayer(...,{
  onFullscreen:function(){ this.getPlugin('content').css({height:200, body:{fontSize:40}})},
  onFullscreenExit:function(){ this.getPlugin('content').css({height:70,body:{fontSize:20}})},
...
)