Javascript Videojs无法加载视频链接

Javascript Videojs无法加载视频链接,javascript,c#,Javascript,C#,在我的MVC项目中,我有一个名为GetVideo的操作,它返回一个base.File(“xxxx”,“contenttype”) 当我使用时,可以成功检索视频。但是,当我将链接嵌入视频标记时,videojs播放器无法加载视频链接 <video id="inspection" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="none" width="800" height="400"

在我的MVC项目中,我有一个名为GetVideo的操作,它返回一个base.File(“xxxx”,“contenttype”)

当我使用时,可以成功检索视频。但是,当我将链接嵌入视频标记时,videojs播放器无法加载视频链接

     <video id="inspection" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="none" width="800" height="400"
              poster="../images/afcd.gif">
            <source src="http://localhost:55919/Service/GetVideo?id=1" type='video/mp4' />
     </video>

在这种情况下,我如何解决这个问题

     <video id="inspection" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="none" width="800" height="400"
              poster="../images/afcd.gif">
            <source src="http://localhost:55919/Service/GetVideo?id=1" type='video/mp4' />
     </video>