I make a presentation with LaTex using beamer.
I have succeeded in add movie in Sharelatex and my code is as follows :
\documentclass[]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{multimedia}
\begin{document}
\begin{frame}{}
\begin{center}
\movie[width=0.5\textwidth,showcontrols=true]
{% placeholder = text or image
\includegraphics[width=0.4\textwidth]{myPic.png}
}%
{myMovie.avi} % video filename
\end{center}
\end{frame}
\end{document}
But I can't read my movie in Ubuntu. I read in some site it's because my PDF reader can't. I may understand it's possible but I doesn't find how.
\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – ebosi Apr 05 '16 at 14:18