Document ClassesResult of embedded Video in Presentation File

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
minidiable
Posts: 30
Joined: Tue Nov 13, 2012 4:18 pm

Result of embedded Video in Presentation File

Post by minidiable »

Hi,

I know that it's possible to embed a video in a presentation coupling the media9 package and the beamer class.

I want to know what will be the output of the LaTeX compilation. Will it be a PDF with an embedded Video?


Thanks,
Fab.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Spider
Posts: 6
Joined: Sat Jul 27, 2013 3:45 pm

Result of embedded Video in Presentation File

Post by Spider »

Hi.
Yes, it will be a pdf file with a video in it.
Try this code after putting a video in your folder.

Code: Select all

\documentclass{beamer}
\usepackage{hyperref}
\usepackage{flashmovie}
\begin{document}
\flashmovie[width=12cm,height=8cm,engine=flv-player,auto=1]{video.flv}
\end{document}
Post Reply