I got the following minimum working example from: \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}
media9ships with 3 media players:VPlayer.swf(MP4, FLV),APlayer.swf(MP3), StrobeMediaPlayback (MP4, FLV, MP3). Which tool do you use for conversion? I recommend open-source FFmpeg for any conversion. Playing only the sound of a video file is kind of abuse. I'd convert the video into MP3 (removing the video information) and useAPlayer.swfinstead. – AlexG Nov 13 '12 at 08:38ffmpeg -i origVideoFile.mp4 soundFile.mp3. – AlexG Nov 13 '12 at 11:14