how to display video mp4 from database in modal
Hi,
I would like from an interactive report open a modal and display a video from database in APEX 5.0 DATABASE 11G
i tried a lot of things but without result
the only thing that i can do it's create a link which is playing or downloading.
with dynamic PL SQL
____________________________________________________________________
BEGIN
DECLARE
cursor cc is
select
id_aid,
mime_type,
file_name,
DBMS_LOB.GETLENGTH(BLOB_CONTENT) lb,
case when DBMS_LOB.GETLENGTH(BLOB_CONTENT) is not null then
apex_util.get_blob_file_src('P4020_BLOB_CONTENT,ID_AID') else '<IMG SRC="&IMAGE_PATH.video.png">' end video