Hello,
I am gonna to show video attachments on web browser, but it doesn’t play on iphone browsers.
<video src="#{App.Config.get('api_path')}/ticket_attachment/#{article.ticket_id}/#{article.id}/#{attachmentId}?view=preview" controls></video>
It works on desktop & android browsers, but not working on iphone.
But, when specifying direct path of video attachment with file extension, it works well.
<video src="1.mp4" controls></video>
Am I missing something for that?
Thanks in advance