英文:
How do I get my embed tag to display videos instead of downloading them?
问题
我的嵌入标签一直在下载视频而非显示它。
我尝试过更改标签的文件类型,但它只是以不同格式下载。我想让标签显示视频。以下是我的代码。
<embed type="video/mp4" src="videos/ymcaHome.mp4" width="400" height="300">
英文:
My embed tag keeps downloading the video instead of displaying it.
I have tried changing the file type of the tag, but it just downloads it in a different format. I want the tag to display the video. Here's my code below.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
<embed type="video/mp4" src="videos/ymcaHome.mp4" width="400" height="300">
<!-- end snippet -->
答案1
得分: 0
你可以通过将视频的 URL 或路径指定为 src 属性值来实现。就像这样:
<embed src="your_video_file_url.mp4" type="video/mp4" width="640" height="360">
英文:
You can do so by specifying the video url or the path as the src attribute value. Like this:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
<embed src="your_video_file_url.mp4" type="video/mp4" with="640" height="360">
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论