I'm trying to include a video into my presentation using this code:
\documentclass[xcolor={dvipsnames}]{beamer}
\usetheme{CambridgeUS}
\usepackage{multimedia}
\begin{frame}
\frametitle{Test title}
\framesubtitle{Test subtitle}
\movie[showcontrols,width=\linewidth]{}{c.avi}
\end{frame}
\end{document}
But this wouldn't display the video, how do I to deal with this please?
Thanks a lot!
beamerdocumentation states thathyperrefmust also be loaded withmultimedia, but as the last package. Alternatively, you can use themedia9package instead ofmultimedia. – ChrisS May 05 '14 at 23:26