Describe the solution you'd like
It would be great if ReportPortal can support Video markdown similar to how it supports for Images in Logs
something like that is already available for images like below

Is your feature request related to a problem? Please describe.
Its not related to any problem in reportportal but in our framework we record all our execution as a video and upload them in AWS S3 to save space in the report. So if markdown can support video that will be great feature for us.
@DzmitryHumianiuk - I know you had recommended attaching videos as base64 encoded however when I did that, it doesn't render the video and it looks like:

Clicking on it downloads the .mov of the videos which plays fine in local player. One thing to note here is that the original video file was an mp4. I am encode it in base64 and then embed in our reports.
base64_vid = Base64.encode64(File.open('./videos/sample.mp4', 'rb:ASCII-8BIT:UTF-8', &:read))
embed(base64_vid, 'video/mp4;base64')
Just to add more context to original request, we are looking for markdown support for video which can render videos like:

If inline HTML markdown support is added then it will solve all the problems. I think markdown does have inline HTML support - https://daringfireball.net/projects/markdown/syntax#html
@DzmitryHumianiuk - I know you had recommended attaching videos as base64 encoded however when I did that, it doesn't render the video and it looks like:
Clicking on it downloads the .mov of the videos which plays fine in local player. One thing to note here is that the original video file was an mp4. I am encode it in base64 and then embed in our reports.base64_vid = Base64.encode64(File.open('./videos/sample.mp4', 'rb:ASCII-8BIT:UTF-8', &:read)) embed(base64_vid, 'video/mp4;base64')
I noticed that this bug is reported here already - https://github.com/reportportal/service-ui/issues/2243
Just to add more context to original request, we are looking for markdown support for video which can render videos like:
If inline HTML markdown support is added then it will solve all the problems. I think markdown does have inline HTML support - https://daringfireball.net/projects/markdown/syntax#html
We are using a hack to display a thumbnail clicking which open an html page in new tab with video embedded in it.
[](https://<s3-bucket-url>/page-with-embedded-video.html)
It would be nice to have an option to embed video from link within the logs.
Than it should be splitted in 2 requests:
Most helpful comment
Than it should be splitted in 2 requests: