在 Latex 文档中插入 FLV 视频

发布于 2024-09-01 19:41:04 字数 251 浏览 2 评论 0原文

我正在尝试在乳胶文档中插入 flv 视频。我已经尝试过以下方法:

\begin{figure}[h!]
\centering
\includegraphics[scale=1]{animation/animation1.flv}
\caption{My animation}
\label{Anim1}
\end{figure}

但它根本不起作用!有谁知道该怎么做?我会避免转换视频,因为我不知道读者会使用哪种编解码器。

I'm trying to insert a flv video in a latex document. I've tried the following :

\begin{figure}[h!]
\centering
\includegraphics[scale=1]{animation/animation1.flv}
\caption{My animation}
\label{Anim1}
\end{figure}

But it's not working at all ! Does anyone know how to do this ? I would avoid to convert the video because I don't know what kind of codec the reader would have.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

决绝 2024-09-08 19:41:04

使用 media9.sty,可从 CTAN 获取。您可能需要稍微修改 .sty 以告诉它 .flv 也是一个电影文件。

我会避免转换视频,因为我不知道读者会使用哪种编解码器。

好吧,如果您关心阅读器的设置,您甚至不能假设嵌入 pdf 中的视频可以正常工作。除了 Adob​​e Reader 之外,它的支持并不好。即使 Linux 上的 Adob​​e Reader 也不支持它。

因此,请务必询问读者使用哪种PC环境,并相应地准备和测试文件。

Use media9.sty, available from CTAN. You might need to slightly modify the .sty to tell it that .flv is also a movie file.

I would avoid to convert the video because I don't know what kind of codec the reader would have.

Well, if you care about the setup of the reader, you can't even assume that the video embedded in the pdf to work. It's not well supported except Adobe Reader. Even Adobe Reader on Linux doesn't support it.

So, do ask the reader which PC environment s/he uses, and prepare and test the file accordingly.

凑诗 2024-09-08 19:41:04

不要为此使用 \includegraphics 。该命令仅适用于图像。 此页面提供了一个包,允许您在生成的文档中包含视频。代码将如下所示(从链接页面复制):

\begin{figure}[ht]
  \includemovie[
     poster,
     text={\small(Loading Circle-m-increase3.mp4)}
  ]{6cm}{6cm}{Circle-m-increase3.mp4}
\end{figure}

Don't use \includegraphics for that. This command is for images only. This page offers a package, which allows you to include videos within the generated document. The code would then look like this (copied from the linked page):

\begin{figure}[ht]
  \includemovie[
     poster,
     text={\small(Loading Circle-m-increase3.mp4)}
  ]{6cm}{6cm}{Circle-m-increase3.mp4}
\end{figure}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文