将电影添加到组织模式 html 输出
在我的 org 文件中,我有一个指向电影的超链接,
[[mymovie.avi][Click here to watch my movie]]
将其导出为 html 时,该链接会转换为 html 链接,我可以单击该链接打开一个新的浏览器选项卡,最后在其中播放电影。
然而,这不是很方便。有没有办法在播放该电影的 html 页面中有一个类似 youtube 的框架,就像处理图像一样?
编辑: 我发现 html object 命令可以工作,如果我用它替换 html 文件中的链接,
<object data="mymovie.avi" height=300 width=300></object>
.avi 文件的 html 导出行为可以更改为这样吗?
In my org file I have a hyperlink to a movie
[[mymovie.avi][Click here to watch my movie]]
When exporting this to html, this link gets converted to an html-link that I can click on to open a new browser tab, where finally the movie plays.
This is, however, not very convenient. Is there a way to have a youtube-like frame inside the html page that plays that movie, just as it is done for images?
Edit: I found that the html object command works, if I replace the link in the html file by it
<object data="mymovie.avi" height=300 width=300></object>
Can the html export behaviour of .avi files be changed to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Org 模式现在是 vanilla Emacs 的一部分。考虑使用
Mx report-emacs-bug
提交增强请求。 (是的,这也适用于增强请求,而不仅仅是错误报告。)Org mode is now part of vanilla Emacs. Consider filing an enhancment request, using
M-x report-emacs-bug
. (Yes, that is for enhancement requests too, not just bug reports.)