I have a problem when I try to insert videos into a beamer presentation. I am currently using the package media9 to load the video and my .tex file looks like the following:
\documentclass[utf8, 10pt, usenames,dvipsnames]{beamer}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{anysize}
\usepackage{dsfont}
\usepackage{graphicx}
\usepackage{enumerate}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{hyperref}
\usepackage[bigfiles]{media9}
\mode<presentation>{\usetheme{Madrid}}
\title{Test}
\author{John Doe}
\begin{document}
\frame{\titlepage}
\begin{frame}
\centering
\includemedia[width=0.4\linewidth, height=0.3\linewidth]{}{mmc7.mp4}
\end{frame}
\end{document}
I am using Overleaf (https://www.overleaf.com/3113609pgjpqt#/8669282/) and I'm opening the document using Preview in OSX. I have also tried using TeXMaker + MikTek in Windows and opening the file using Adobe Reader and I still got the same problem.
Something that looks like a video box shows in the corresponding slide but it can't be played. I have also tried using the package multimedia instead of media9 and I still get the same problem.
What is wrong with my code? How could I fix it?
\includemediaplus wrong PDF viewer. AdobeReader is required. For example, take the code in http://tex.stackexchange.com/a/155378 and replace all occurrences ofaaa.mp4with yourmmc7.mp4. – AlexG Aug 19 '15 at 11:06