-
I am trying to load up a fv player via ajax. My javascript makes an ajax call to my php script and that script loads the player using these commands which were stated in the documentation
“$args = array();
$args[‘src’] = $url;
if( $splash = get_post_meta( $id, ‘thumb’, true ) ) {
$args[‘splash’] = $splash;
}
echo flowplayer_content_handle( $args );”
I checked the load flowplayer javascript anywhere option. but I am noticing that when I try to dynamically load a video using hls it runs without a problem but if I use mpd I get a “html 5 unsupported video format error”. I am planning on making this my default player for all my websites. I also noticed that if I try to load the video without using ajax the mpd works perfectly. can anyone help me with this issue. as I know I am not the only person who has experienced it