What are the potential issues with using the VLC Browser Plugin for streaming video in PHP?

One potential issue with using the VLC Browser Plugin for streaming video in PHP is that it may not be compatible with all browsers and may require users to have the plugin installed. To solve this issue, you can use HTML5 video player as a fallback option for browsers that do not support the VLC plugin.

<video controls>
    <source src="video.mp4" type="video/mp4">
    Your browser does not support the video tag or the VLC Browser Plugin.
</video>