Igor M. Coelho
April 8, 2020
We discuss possibilities for adding audio, video and 3d models on beamer and revealjs slides.
To add HTML5 embeddings, such as audios, one can do with <audio> tag. This is not visible on beamer.
<audio controls="1">
<source src="https://www.soundhelix.com/examples/mp3/
SoundHelix-Song-1.mp3"
data-external="1" type="audio/mpeg">
</source>
</audio>
For multimedia and Beamer, it is recommended the media9 LaTeX package (old movie15 package).
Not that maximum version of Adobe Player supported is 9.4.1: - ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.4.1/enu/ (after 9.5 it will not work!).
This also requires flash-player. Sometimes it crashes with beamer, thus it’s certainly not a solid technology for the future.
On next slide, you will see a 3D dice, as long as you have Adobe 9.4.1 and Flash.
An example for dice.u3d.
\includemedia[
label=diceB,
width=0.3\textheight,height=0.3\textheight,
activate=pageopen,deactivate=pageclose,
3Dviews=3Dviews.txt,
]{}{dice.u3d}
Thanks the many advices on Internet, such as: https://tex.stackexchange.com/questions/228989/beamer-class-and-u3d-views?noredirect=1.
Beamer PDF: acroread beamer-3-media.pdf
This also requires a .u3d model, which can be generated by MeshLab. See Linux version: MeshLab AppImage.
This will only appear on Atom.
Thanks a lot to this three.js tutorial.
To see this example on Atom, execute make run or any local server to http://localhost:8081, due to CORS.
<!-- BEGIN COMMENT -->
<canvas id="mycanvas1" width="500px"></canvas>
<label class="switch"><input type="checkbox" id="enable_canvas_c1"><span class="slider round"></span></label>
<script type="module">
import {createRenderCanvas} from 'http://localhost:8081/my3dobject.js';
window.createcanvas = createRenderCanvas;
</script>
\```javascript {cmd=true}
window.createcanvas("mycanvas1", "enable_canvas_c1", "http://localhost:8081/windmill.obj");
\```
<!-- END COMMENT -->
Again, thanks a lot to this three.js tutorial, which have been compressed in this helper script my3dobject.js, for object model windmill.obj.
See: https://threejsfundamentals.org/threejs/lessons/threejs-load-obj.html.
This will not appear on beamer, only on revealjs.
<!-- BEGIN COMMENT TO beamer -->
<video src="http://v2v.cc/~j/theora_testsuite/320x240.ogg" controls>
Your document does not support <code>video</code>.
</video>
<!-- END COMMENT TO beamer -->
Feel free to try other plot formats and technologies.
Please contribute with us if you find more nice things!