Last active
August 29, 2015 14:00
-
-
Save LuighiV/11025026 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%En el preambulo | |
\usepackage{media9} | |
%En el cuerpo | |
%\includemedia[<options>]{<poster text>}{ | |
% <main Flash (SWF) file or URL | 3D (PRC, U3D) file>} | |
% options: opciones | |
% flashvars: especificaciones del entorno empleado | |
% poster text: texto en lugar del video | |
% main Flash (SWF) file or URL: nombre del entorno del video | |
% (StrobeMediaPlayback.swf, VPlayer.swf, APlayer.swf) | |
% Ejemplo insertando video mp4 | |
\includemedia[ | |
activate=pageopen, | |
width=200pt,height=170pt, | |
addresource=example.mp4, | |
flashvars={% | |
src=example | |
&scaleMode=stretch} | |
]{}{StrobeMediaPlayback.swf} | |
% Ejemplo reproduciendo desde streaming | |
\includemedia[ | |
width=0.6\linewidth,height=0.3375\linewidth, % 16:9 | |
activate=pageopen, | |
flashvars={ | |
src=rtmp://streaming.music.indiana.edu:1935/onDemand/mp4:media/% | |
20090327_VarRussianTheme-h264-480.m4v | |
&scaleMode=stretch | |
} | |
]{}{StrobeMediaPlayback.swf} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%En el preambulo | |
\usepackage{movie15} | |
%En el cuerpo | |
%\includemovie[<options>]{<width>}{<height>}{<media file>} | |
% options: opciones (poster, text) | |
% width, height: ancho y alto del lienzo | |
% media file: nombre del archivo | |
% Ejemplo | |
\includemovie[ | |
poster, | |
text={\small(example.mp4)} | |
]{6cm}{6cm}{example.mp4} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%En el preambulo | |
\usepackage{multimedia} | |
%En el cuerpo | |
%\movie[<options>]{<poster text>}{<movie filename>} | |
% options: opciones | |
% poster text: texto que aparece en lugar del videa | |
% movie filename: nombre del archivo | |
% Ejemplo: | |
\movie{\pgfuseimage{myposterimage}}{mymovie.avi} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment