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;