I am using an html5 video
tag where the src
is a data uri:
<video controls>
<source type="video/mp4" src="data:video/mp4;base64,{data} />
<video>
which Chrome renders with controls:
However if I click the download button on the right, the file downloads as
download.mp4
. Is there anyway to control that filename?