Graphics, Figures & Tables.mov file in an article

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
ammar
Posts: 1
Joined: Tue Jun 03, 2014 1:56 pm

.mov file in an article

Post by ammar »

Hi, I am new to using LaTeX. I have tried to insert a short .mov video to my article. It worked using the media9. However after updating my packages I started getting an error.
! Undefined control sequence.
\AtEndDvi@Hook ...Properties <</OCGs \@anim@@ocgs
\space 0 R/D <</BaseState/...
l.619 \item S
cheibentemperaturen fallen mit den Radius in der Scheibe g...
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
Package atenddvi Info: Last page = 17.
The code for embedding video that I use is:

Code: Select all

\includemedia[			activate=pageopen,width=14cm,height=10cm,addresource=Kosmogonie/Jacobi_s.mov, flashvars={src=Kosmogonie/Jacobi_s.mov&scaleMode=stretch}]{}{StrobeMediaPlayback.swf}\\

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

alex
Posts: 32
Joined: Mon May 19, 2008 10:53 am

.mov file in an article

Post by alex »

This is a bug in the `animate' package which was loaded in the present example. A new release [2014/06/04] is being prepared and will be available soon on CTAN. For now, try changing the order of package loading from

Code: Select all

\usepackage{animate}
\usepackage{media9}
to

Code: Select all

\usepackage{media9}
\usepackage{animate}
Post Reply