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
Suresh Kumar 34Suresh Kumar 34 

How to show the video in vf page

Hi guys,

I got a requirement that we need to show the video tutorial in vf page.I am unable to uplaod  video more than 10mb in static resources.

How to achieve to show the video in vf page .

Thanks,
Suresh
nagendra 6989nagendra 6989

Hi Suresh,
To store the following kind of files and refer on the visualforce page we make use of static resources.
1)images
2)javaScript/jQuery
3)CSS Style Sheets
4)zip files
Overall size of the static resources per organization: 250 MB
Size of the each static resource file: 5 MB
To refer the static resource on the vf page use: $Resource.FileName
To refer the zipped static resource on the vf page use:URLFOR($Resource.zipname, '/images/FileName.png').

Mark it as solved if it resolves your issue.

Thanks & Regards,
Nagendra.P
9848950830