HTML5视频源无法理解文件存储路径

时间:2016-07-23 09:06:35

标签: java html5 tomcat video file-storage

HTML5视频源无法理解文件存储路径。 例如,filepath是d:/ filestorage或c:\ tomcat \ temp

 <video width="620" height="580" controls="true">
                                    <source  src="#{showVideoBean.fileModel.filepath}" type="video/mp4 .mp4"/>
                                    Your browser does not support the video tag.
                                </video>  

据我所知,源只能将路径理解为URL,例如http://

如何将视频文件存储文件存储并使用HTML5视频标记进行播放。 我不希望在项目文件夹下存储文件。

1 个答案:

答案 0 :(得分:0)

解决方案是: 我在\ webapps \ file-storage中创建了简单的Web应用程序 它包含WEB-INF和web.xml 在我的后端,我将视频文件存储在\ webapps \ file-storage中 并在网页

 <video width="620" height="580" controls="true">
                                    <source  src="/file-storage/#{showVideoBean.fileModel.filepath}" type="video/mp4 .mp4"/>
                                    Your browser does not support the video tag.
                                </video> 

#{showVideoBean.fileModel.filepath} equals /some/folders/filename.mp4