\documentclass{beamer}
%%%% PREAMBLE
\usetheme{Warsaw}
\useinnertheme{rectangles}
\setbeamercovered{transparent}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{multimedia}
\usepackage{hyperref}
\title{Short Paper Title}
\author{Author's Name}
\institute[University of LaTeX]{
Department of Computer Science\\
Graphics Lab}
\begin{document}
%------------------- TITLE PAGE FRAME -------------------%
\begin{frame}[plain]
\titlepage
\end{frame}
%------------------------ slide -------------------------%
\begin{frame}
\frametitle{The frame title}
\begin{center}
\movie[width=9.1cm,height=6.5cm,showcontrols=true,loop,poster]{}
{video1.mp4}
\end{center}
\end{frame}
\end{document}
Obviously, one would need to have the file "video1.mp4" on their local
system to test this script.
> I am creating a presentation using beamer and would like to have my
> embedded video clip automatically play on a loop. I can get the video
> to appear and play in the pdf; however, it does not loop. I have tried
> different video formats (mp4,mpg,avi), all would play but none would
> loop. According to the beameruserguide.pdf, repeat should have the
> same effect as loop. Below is a minimum working example:
>
> \documentclass{beamer}
> %%%% PREAMBLE
> \usetheme{Warsaw}
> \useinnertheme{rectangles}
> \setbeamercovered{transparent}
> \usepackage{amsmath}
> \usepackage{graphicx}
> \usepackage{multimedia}
> \usepackage{hyperref}
Well, if it didn't work, why don't you try movie15 or the animate
package and see whether that helps? Comment out the multimedia
package invocation and try, of course.
[snipped 20 lines]
> Obviously, one would need to have the file "video1.mp4" on their local
> system to test this script.
>
sivaram
--