如何在 Microsoft OneNote 中插入 MP4 文件的打印输出

How to insert printout of an MP4 file in Microsoft OneNote

正在寻找在 Microsoft OneNote 中 "insert printout" MP4 的方法(OneNote speak for embedding a video)。

有什么想法可以实现吗?直接从 OneNote 页面播放视频就好了。

您不能包含 MP4 文件(您可以将其作为附件包含),但您可以通过 OneNote API 使用 POST 将来自 youtube 的嵌入式视频包含在 OneNote 中~ /pages - 在您发送的 HTML 中,包括:

<html>
    <head>
        <title>This page will contain a video!</title>
    </head>
    <body>
        <iframe data-original-src= "https://www.youtube.com/watch?v=h07qZLLQc4I", width="280" height="280"/>
    </body>
</html>