Starting from @Thorsten's answer inHow can I set a time between slides to create an automatic slideshow with beamer?,I was wondering if it's possible to get a slideshow (.mp4
or .gif
) mantaining all the transitions effects in my MWE:
\documentclass{beamer}\begin{document}\begin{frame}\transwipe[duration=1]\transduration{3}This is my first frame\end{frame}\begin{frame}\transwipe[duration=1]\transduration{3}This is my second frame\end{frame}\begin{frame}\transwipe[duration=1]\transduration{3}This is my third frame\end{frame}\end{document}
PS: If I use ImageMagick to convert pdf in jpg:
convert -density 300 file.pdf page_%04d.jpg
and ffmpeg to get a video:
ffmpeg -framerate 1/3 -pattern_type glob -i '*.jpg' -c:v libx264 -r 300 -pix_fmt yuv420p video.mp4
I am not able to mantain the transition related to \transwipe.