3

How can I add two videos in one slide side by side. Both videos should be in a horizontal line. The following code put a video above the other video.

\begin{frame}[t]
    \frametitle{ Results}


\includemedia[
  label      = AA,
  width      = 110mm,
  height     = 50mm,
  activate   = pageopen,
  addresource= master.mov,
  flashvars={flv=master.mov & autoplay=0}
]{}{player_flv_maxi.swf}

\includemedia[
  label      = BB,
  width      = 110mm,
  height     = 50mm,
  activate   = pageopen,
  addresource= master.mov,
  flashvars={flv=master.mov & autoplay=0}
]{}{player_flv_maxi.swf}

\end{frame}
Werner
  • 603,163
CroCo
  • 5,902
  • 1
    Do not leave an empty line between the two constructions. – Werner May 23 '14 at 02:48
  • @Werner, wow. thanks alot. Another two questions, how can I add title for each vidoe? and how can I play them by pressing one button? – CroCo May 23 '14 at 02:54

1 Answers1

3

You could set each .swf in a minipage to block them in; this allows you to set a heading:

enter image description here

\documentclass{beamer}
\usepackage{media9}
\begin{document}

\begin{frame}[t]
    \frametitle{ Results}

\fbox{\begin{minipage}{.4\linewidth}
  \centering Heading A

  \includemedia[
    label      = AA,
    width      = \linewidth,
    height     = 50mm,
    activate   = pageopen
  ]{}{file.swf}
\end{minipage}}
\fbox{\begin{minipage}{.4\linewidth}
  \centering Heading B

  \includemedia[
    label      = BB,
    width      = \linewidth,
    height     = 50mm,
    activate   = pageopen
  ]{}{file.swf}
\end{minipage}}

\end{frame}

\end{document}

Placement of the elements can be adjusted using information from Reduction of Space between two Sub-figures.

You don't need the \fbox, of course.

Werner
  • 603,163