le-chat-php
le-chat-php copied to clipboard
is it possible loading videos like pictures?
trafficstars
Like [media]http://xxxxxxxxxxxxxxxxxx.mp4/webm
Any one know how to achieve this goal ?
Much appreciate~
Well yes as long as the tags used are supported, it's just another media type, just need the right means to check it
You could add a filter like this:
Match: \[media\]([^\s]+) Replace: <video src="$1" autoplay>, tick the regex box. Then you can embed a video just like the images.
Note: those videos should be very short, otherwise they will only play a few seconds until the next refresh of messages. Each time the messages are reloaded, the video will begin from the beginning.