Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

APEX 5 play video AVI/MP4 file

user10437730Dec 4 2016 — edited Dec 11 2016

Hello

I would like to play videos from library created on local machine  I am getting only player symbol but video is not playing.

I want to play video when hyperlink is clicked in targeted window.

following is my code , video format is AVI - please help.

DECLARE

path number;

CURSOR c_emp IS

SELECT movie_id, video_name, path

FROM  video where location_type='INT';

BEGIN

FOR a IN c_emp LOOP

htp.p('<video width="400" controls> <source src="'||a.path||'" type="video/avi"> </video>');

END LOOP;

END;

This post has been answered by Scott Wesley on Dec 10 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 8 2017
Added on Dec 4 2016
12 comments
1,657 views