這是我第一次使用投影機來準備我的辯護演講。這是我正在使用的投影機模板:範本(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
,這也沒有幫助。我已經為 adobe 安裝了 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}