le-chat-php icon indicating copy to clipboard operation
le-chat-php copied to clipboard

is it possible loading videos like pictures?

Open onion888 opened this issue 3 years ago • 1 comments
trafficstars

Like [media]http://xxxxxxxxxxxxxxxxxx.mp4/webm

Any one know how to achieve this goal ?

Much appreciate~

onion888 avatar Sep 12 '22 15:09 onion888

Well yes as long as the tags used are supported, it's just another media type, just need the right means to check it

rexzooly avatar Sep 12 '22 18:09 rexzooly

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.

DanWin avatar Oct 22 '22 10:10 DanWin