Export Presenter#

When you’ve created a project and you launch manedit, you can select the project and edit it. If everything is to your liking you can export the project as a presentation. This adds a few files required to present the project to the project directory. You can copy this directory to a flash drive or wherever you need it.

Now don’t need the Manim Editor to be installed anymore to be able to present the project. You only need a local web server. If you have Python installed, you’re good to go. Simply run this in the projects directory:

python3 -m http.server

Instead of running a local web server you can host the project on an online web server (e.g. GitHub Pages). That way you can access it from anywhere. This is how the example has been created.

Supported Browsers#

These browsers are officially supported. Others may work as well but haven’t been tested yet.

  • Firefox

  • Chrome

  • Edge

If you confirm another functioning browser, feel free to open an issue and tell the devs.

Presenter Explanation#

The presenter is separated in three parts: timeline, video player, controls and informative tables.

In the timeline you can find the name, type (which is also displayed in the tables beneath the controls) and the thumbnail of each slide. You can click on an element and it will take you to that part in the presentation. In addition to that it shows the amount of time spent playing each slide. This value will only update once a different section is being shown or the section gets restarted. That way you get accurate information on how much time you spent on each section.

Instead of using the keyboard, you can utilise the controls on the right. They offer basic media functionality like play last section, play next section, pause, restart section and enter fullscreen. Pressing the “last section” button (or using ArrowLeft on the keyboard) doesn’t necessarily go back one section. If the current section has already been playing for a while, the current section will be restarted instead. You can always use the Control key (or Command on a Mac) to forcefully go to the next or last section.

If you are hosting the presenter on a remote webserver, you should consider using the “Cache Videos” button. It requests all videos and thus offers the browser the opportunity of caching them, speeding up future requests.

Note

The timeline shows slides while the controls jump from section to section. That way you can create a lot of individual sections that don’t clutter the timeline.

The player settings offer some fine-grained options, most of which are for debugging purposes. Only the loader switch is of any interest: The presenter of the Manim Editor employs two redundant video loaders, the buffer and the fallback loader. You should always use the buffer loader. But if for any reason it doesn’t work, you can use the fallback loader instead.

Warning

Be aware that the fallback loader has a detrimental effect on loading times between sections. Only use it when there is no other way!