如何将视频嵌入 Lotus Notes 网页

how to embed a video into Lotus Notes webpage

我希望我的网页自动显示视频。视频文件是用户看不到的表单某些字段中的附件。因此用户需要在 iFrame 或其他方式中查看视频本身。请指教

Domino 版本 8.5.3

你真的应该展示你的尝试...

我的方法是使用普通视频播放器并将其指向视频文件。如果它作为附件存储,使用 $FILE 在 URI 中引用它:http://Host/Database/View/Document/$File/Filename?OpenElement

http://www.ibm.com/developerworks/lotus/library/ls-Domino_URL_cheat_sheet/ 是个不错的地方

例如,如果您使用 video.js (http://www.videojs.com/),您的代码将如下所示:

<video id="example_video_1" class="video-js vjs-default-skin"
  controls preload="auto" width="640" height="264"
  poster="http://video-js.zencoder.com/oceans-clip.png"
  data-setup='{"example_option":true}'>
 <source src="http://http://www.example.com/database.nsf/0/987A5B7922CC2FB386257EC2004D17A9/$File/videoclip.mp4?OpenElement" type='video/mp4' />
 <source src="http://http://www.example.com/database.nsf/0/987A5B7922CC2FB386257EC2004D17A9/$File/videoclip.webm?OpenElement" type='video/webm' />
 <source src="http://http://www.example.com/database.nsf/0/987A5B7922CC2FB386257EC2004D17A9/$File/videoclip.ogv?OpenElement" type='video/ogg' />
 <p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
</video>