Hi
I am able to play video from work space in oracle apex .
code used :
SELECT '#APP_IMAGES#u03/form/docs/PF_ECR/videoplayback.mp4' AS video_url,
null AS poster_url,
'video/mp4' AS mime_type,
null AS alternative_video_url,
null AS alternative_mime_type
FROM dual.
videoplugin used above code.
But when i am trying from linux path video is not playing.
select
'<a href="#" " target="_blank">Song</a> <video width="300" height="500" controls>
<source src="/u03/form/docs/videoplayback.mp4" type="video1/mp4 codecs=avc1.42E01E, mp4a.40.2"> </a> </video>' video_url,
null AS poster_url,
'video1/mp4' AS mime_type,
null AS alternative_video_url,
null AS alternative_mime_type
FROM dual;
Is there any code change required.
Please help me.
Thanks,
Eshwar.