It's the first time that I'm using beamer to prepare my defense presentation. This is the beamer template that I'm using : template (pdflatex version). In fact, I need to include several videos (.avi) in my presentation. I've already tried the different ways proposed in this question. None of them worked :
\begin{frame}{test.video}
\includemedia[activate=pageopen,
width=200pt,height=150pt]{}{resources/video.avi}
\end{frame}
or
\begin{frame}{test.video}
\movie[width=8cm,height=4.5cm]{play the video}{video.avi}
\end{frame}
or
\begin{frame}{test.video}
\includemedia[
width=0.4\linewidth,
totalheight=0.225\linewidth,
activate=pageopen,
passcontext, %show VPlayer's right-click menu
addresource=video.avi,
flashvars={
%important: same path as in `addresource'
source=video.avi
}
]{\fbox{Click!}}{VPlayer.swf}
\end{frame}
\begin{frame}{test.video}
\includemedia[
activate=pageopen,
width=200pt,height=150pt,
addresource=video.avi,
flashvars={%
source=video.avi% same path as in addresource!
% &autoPlay=true% % optional configuration
% &loop=true% % variables
}
]{}{VPlayer.swf}
\end{frame}
and the last one that I tried and was unsuccessful :
\begin{frame}{test.video}
\includemovie{.85\textheight}{.85\textheight}{video.mp4}%
\end{frame}
They all create a white empty box that does not do anything. I have converted the videos to .mp4, this did not help either. I have installed flash-player for adobe (version 2019.010.20091). My operating system is : macOS High Sierra V. 10.13.6. Your help would be greatly appreciated.

media9manual play? – AlexG Feb 20 '19 at 11:25Adobe Acrobat Reader DC (version 2019.010.20091). No, they do not work unfortunately. – Basilique Feb 20 '19 at 11:28media9manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed. – AlexG Feb 20 '19 at 11:31unable to play 'video.mp4'. – Basilique Feb 20 '19 at 12:10video.mp4? Are you working on Overleaf? If so, would you mind sharing a link to the project? Maybe there is something wrong with the encoding of your MP4. – AlexG Feb 20 '19 at 12:14ffmpeg -start_number 01 -stream_loop -1 -i frame%02d.png video.avifrom a series of frames that were created bygnu plot. – Basilique Feb 20 '19 at 12:21ffmpeg! Use it to produce the correct MP4 directly from the source PNG files acc. to page 2 of the media9 manual:ffmpeg -i frame%02d.png -c:v libx264 -profile:v high -pix_fmt yuv420p -g 30 -r 30 video.mp4– AlexG Feb 20 '19 at 12:28[image2 @ 0x7fb083800000] Could not find codec parameters for stream 0 (Video: png, none(pc)): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options– Basilique Feb 20 '19 at 13:04