-
I am trying to figure out adding a RTMP and m3u8 stream in one single FV player.
I have read the post about this
https://foliovision.com/support/fv-wordpress-flowplayer/requests-and-feedback/live-streaming-possible#post-30951However, I still can’t seems to be able to figure out how to do that.
I have 2 streaming URL, one for brower like Chrome/Firefox
rtmp://xxxx.com:1935/livepkgr/livestream2
and one for IOS device and Safari
http://xxxx:8134/hls-live/livepkgr/_definst_/liveevent2/livestream2.m3u8
I have a shortcode like this:
[fvplayer src="http://xxxx:8134/hls-live/livepkgr/_definst_/liveevent2/livestream2.m3u8" rtmp="rtmp://xxxx:1935/livepkgr" rtmp_path="livestream2" autoplay="true" live="true"]
The above code only works on IOS device. If I open that in Chrome, I would get an error saying “Flash: Video File not found” I am pretty sure the RTMP is working because the following code works on Chrome
[fvplayer rtmp="rtmp://xxxx.com:1935/livepkgr" rtmp_path="livestream2" live="true"]
Could you give me a hand how to get this to work on both IOS device and Chrome/Firefox? Thanks.