For partners that build or integrate commercially available applications and service solutions with the Oracle Cloud Platform
For partners that provide implementation or managed services around Oracle Cloud Applications
Hi All,
We have a requirement to embedded videos and play them on clicking the video thumb nail icon.
If anyone can provide us the way we can do it.
Thanks in Advance.
Regards,
Venkat P
Just use HTML code in your page to do this.
For example - https://www.w3schools.com/html/html5_video.asp
It's working !!! Thank you.
Currently I have implemented the the video code as below. What is the best way to store videos and refer them in VBCS ?
<video width="320" height="240" controls="">
<source src="https://www.radiantmediaplayer.com/media/bbb-360p.mp4" type="video/mp4">
</video>
You will need to store videos outside of VB and refer to them by the URL they are available at.
It's up to you to decide on your preferred location.
One option is in an external DB as BLOBs that are exposed as REST services - similar to this:
Storing Image Files in Your Database from a Visual Builder App
You will need to store videos outside of VB and refer to them by the URL they are available at.
It's up to you to decide on your preferred location.
One option is in an external DB as BLOBs that are exposed as REST services - similar to this:
Storing Image Files in Your Database from a Visual Builder App