I want to run synchronously 4 videos on same page. This can be accomplished by launching all videos simultaneously. How to do that? Here is MWE with 2 videos.
\documentclass{article}
\usepackage{media9}
\begin{document}
\begin{figure*}
\fbox
{\includemedia[
activate=pageopen,
width=0.475\textwidth,
addresource={VertOscAmp(a0_05h0_25dZ1w1_g1rmax20mu0_001)a.mp4},
flashvars={%
src=VertOscAmp(a0_05h0_25dZ1w1_g1rmax20mu0_001)a.mp4
&scaleMode=stretch}
]{}}{StrobeMediaPlayback.swf}}
\hfill
\fbox
{\includemedia[
activate=pageopen,
width=0.475\textwidth,
addresource={VertOscAmp(a0_25h1dZ1w1_g1rmax20mu0_001)b.mp4},
flashvars={%
src=VertOscAmp(a0_25h1dZ1w1_g1rmax20mu0_001)b.mp4
&scaleMode=stretch}
]{}}{StrobeMediaPlayback.swf}}
\\
\caption{caption}
\label{fig:VertOscAmp}
\end{figure*}
\end{document}
StrobeMediaPlayback, I dont't know how to activate it. But with the other player,VPlayer.swfit is easy. Any reason why not usingVPlayer.swf? – AlexG Jan 13 '16 at 09:51VPlayeroverVertOscAmp(a0_25h1dZ1w1_g1rmax20mu0_001)b.mp4. However, after renaming the file tob.mp4VPlayerworks somehow. In any case I would be happy to useVPlayer. I am usingStrobeMediaPlaybackby habit. Could you give an example of how to run VPlayer over two videos simultaneously? – Igor Kotelnikov Jan 13 '16 at 12:48VPlayerthe FlashVar for setting the video source issource=, notsrc=. I tried here with a file name like yours and it worked. – AlexG Jan 13 '16 at 13:04