I am experiences some issues when including videos in my beamer presentation. Here is my frame,
\begin{frame}{Frame Title}
\movie[width=6cm,height=4.5cm]{}{videos/test.avi}
\end{frame}
The problem occurs when I set the width and the height of the video. When I enter Presentation-mode of my PDF-viewer, black spaces occur at the sides of the video.
Is there a way to completely get rid of these?
I tried forcing the background color to white before the frame (\setbeamercolor{background canvas}{bg=white}), but that didn't solve the issue.
MWE:
\documentclass[11pt]{beamer}
\usepackage{multimedia}
\usepackage{tabularx}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{gensymb}
\begin{document}
\begin{frame}
\end{frame}
\begin{frame}{Frame 1}
\movie[poster,autostart,width=6cm,height=4.5cm,repeat=true]{}{rho.avi}
\end{frame}
\end{document}
The video is here: https://ufile.io/fb2de
Screenshot:


animatepackage, if you have the files of the single frames (preferably as original vector graphics) available. – AlexG Dec 19 '16 at 11:09borderwidth=0ptin the options of the movie. – samcarter_is_at_topanswers.xyz Dec 19 '16 at 13:45\documentclass[aspectratio=169]{beamer}. – Paul Gaborit Dec 19 '16 at 14:14\usepackage{multimedia} \usepackage{tikz}
\begin{document}
{ \setbeamertemplate{logo}{% \begin{tikzpicture}[remember picture,overlay] \draw[yellow, line width=10pt] (-11.7,2.2) rectangle (-5.7,6.6); \end{tikzpicture}} \begin{frame}{Frame 1} \movie[poster,autostart,width=6cm,height=4.5cm,repeat=true]{}{rho.avi} \end{frame} } \end{document}`
– samcarter_is_at_topanswers.xyz Jan 04 '17 at 12:48