how to play m3u8 link on dynamic page html element.

actually i made a database having title, image , about and an html code in text property cell, as we use url which is saved in database to embed item in html component on dynamic page using following code:-
$w ( “#dynamicDataset” ). onReady ( () => { const itemUrl = $w ( ‘#dynamicDataset’ ). getCurrentItem (). code ; $w ( ‘#html1’ ). src = itemUrl } );} );
I want to use different html code for each item , I want when i open item the particular html code of that item which is saved in content manager(database)
will execute in html component.