function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
prem kumar 9prem kumar 9 

How to give controller bar for video like play/pause using apex code

PratikPratik (Salesforce Developers) 
Hi Prem,

You can refer to this:
http://kalyanlanka.blogspot.sg/2012/09/working-with-jplayer-and-visualforce.html

Thanks,
Pratik
prem kumar 9prem kumar 9

Thanks, 
I need for .swf player which i've used in browser
Tony TannousTony Tannous
Hello
You can use HTML5 inside the VF 

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
</video>

Good Luck