I got the following minimum working example from: latex beamer: \includemedia won't play video
I use Windows and have Adobe X. I can get the MWE to compile, but in the .pdf, I cannot get it to play unless I use the VPlayer option as below and make a few additional modifications as in the media9 manual.
In addition, I am wondering whether there is a way to include it as apart of the cover slide, and also in a way such that it is barely (ideally almost not at all) visible?
I suspect that APlayer.swf might be preferred but I cannot get that working. Also, I imagine that I'd like to not use \pagewidth, but something much smaller.
\documentclass{beamer}
\usetheme{Singapore}
\usepackage{media9}
\title{TITLE}
\author{AUTHOR}
\institute{INSTITUTE}
\date{DATE}
\begin{document}
\addtocounter{framenumber}{-1}
\frame{\titlepage}
\begin{frame}{Title}
\includemedia[
width=\paperwidth,
height=0.7\linewidth,
activate=pageopen,
addresource=movie.mp4,
flashvars={source=movie.mp4
&loop=true
&scaleMode=letterbox
}
]{}{VPlayer.swf}
\end{frame}
\end{document}