beamer:演示文稿中嵌入的视频(.avi)

beamer:演示文稿中嵌入的视频(.avi)

这是我第一次使用 beamer 准备我的答辩演讲。这是我使用的 beamer 模板:模板pdflatex版本)。事实上,我需要.avi在演示文稿中包含几个视频()。我已经尝试了本文中提出的不同方法问题. 均未奏效:

\begin{frame}{test.video}
 \includemedia[activate=pageopen,
 width=200pt,height=150pt]{}{resources/video.avi}
 \end{frame}

或者

\begin{frame}{test.video}
\movie[width=8cm,height=4.5cm]{play the video}{video.avi}
\end{frame}

或者

\begin{frame}{test.video}
\includemedia[
  width=0.4\linewidth,
  totalheight=0.225\linewidth,
  activate=pageopen,
  passcontext,  %show VPlayer's right-click menu
  addresource=video.avi,
  flashvars={
    %important: same path as in `addresource'
    source=video.avi
  }
]{\fbox{Click!}}{VPlayer.swf}
\end{frame}

\begin{frame}{test.video}
\includemedia[
  activate=pageopen,
  width=200pt,height=150pt,
  addresource=video.avi,
  flashvars={%
     source=video.avi% same path as in addresource!
%   &autoPlay=true%    % optional configuration
%   &loop=true%        % variables
  }
  ]{}{VPlayer.swf}
\end{frame}

最后一个我尝试过但没有成功:

\begin{frame}{test.video}
\includemovie{.85\textheight}{.85\textheight}{video.mp4}%
\end{frame}

它们都创建一个没有任何作用的白色空框。我已将视频转换为.mp4,但这也无济于事。我已为 Adob​​e 安装了 Flash Player ( version 2019.010.20091)。我的操作系统是:macOS High Sierra V. 10.13.6。非常感谢您的帮助。

答案1

您在评论中提到,您通过一系列图像生成了视频。我不会尝试包含视频,而是直接包含图像。

一个简短的例子:

\documentclass{beamer}
\usepackage{xmpmulti}
\begin{document}

    %asuming you images are called "something-0.png" up to "something-16.png" 
    \begin{frame}
        \transduration<0-16>{0}
        \multiinclude[<+->][format=png, graphics={width=\textwidth}]{something}
    \end{frame}

\end{document}

在此处输入图片描述

相关内容