0

I have a beamer file which contains an mp4 movie, when I clic to read it it shows this error message

it asks if I want to replace the file

it asks if I want to replace the file, I serached in the net and installed the codecs pack, but it still doesn't work, what is the solution? this is the Latex code

\section{Movie}
\begin{frame}{Movie}
   \centering{
      \movie[showcontrols]{\includegraphics[scale=0.10]{play.png}}{Hero.mp4}
    }
\end{frame}

I'm using Adobe Acrobat XI

this is my folder

folder

compiling error after calling media9

compile error

Hind Dev
  • 641
  • It clearly seems that the video was not embedded in the PDF file. It will work if you put the Hero.mp4 file along with the PDF file. – Zoxume Mar 21 '16 at 11:39
  • sorry but I didn't understand, what do you mean by along with the pdf file, in the tutorial I saw, he just put the video on the same folder latex file then add the code and it's working, I did the same – Hind Dev Mar 21 '16 at 11:43
  • You mean that D:\INFO\Latex\testAnimation\Hero.mp4 exists and that the PDF file is in D:\INFO\Latex\testAnimation? – Zoxume Mar 21 '16 at 12:20
  • of corse, I've added a screenshot of my folder – Hind Dev Mar 21 '16 at 12:52
  • Well, it’s strange. If you create another beamer presentation in a different folder with a different video, does it work? – Zoxume Mar 21 '16 at 12:54

1 Answers1

1

Package multimedia implements the Movie annotation of the PDF specification. Acrobat (Reader) does not support MP4 playback in a Movie annotation. For MP4 content, use the media9 package. See https://tex.stackexchange.com/a/102600 .

AlexG
  • 54,894