防衛プレゼンテーションの準備に 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
、これも役に立ちませんでした。Adobe ( version 2019.010.20091
) 用の Flash Player をインストールしました。私のオペレーティング システムは次のとおりです: 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}