diff --git a/docs/source/documentation/custom_default.rst b/docs/source/documentation/custom_default.rst index 41a97447..554d1fa2 100644 --- a/docs/source/documentation/custom_default.rst +++ b/docs/source/documentation/custom_default.rst @@ -62,6 +62,10 @@ custom_default The directory for storing vector images to be used in the code (including ``.svg`` and ``.xdv``), which will be read by ``SVGMobject``. +- ``sounds`` + The directory for storing sound files to be used in ``Scene.add_sound()`` ( + including ``.wav`` and ``.mp3``). + - ``temporary_storage`` The directory for storing temporarily generated cache files, including ``Tex`` cache, ``Text`` cache and storage of object points. @@ -104,6 +108,16 @@ The relative position of the playback window on the display (two characters, the first character means upper(U) / middle(O) / lower(D), the second character means left(L) / middle(O) / right(R)). +``break_into_partial_movies`` +----------------------------- + +If this is set to ``True``, then many small files will be written corresponding +to each ``Scene.play`` and ``Scene.wait`` call, and these files will then be combined +to form the full scene. + +Sometimes video-editing is made easier when working with the broken up scene, which +effectively has cuts at all the places you might want. + ``camera_qualities`` -------------------- diff --git a/docs/source/getting_started/configuration.rst b/docs/source/getting_started/configuration.rst index ff07685c..f0947097 100644 --- a/docs/source/getting_started/configuration.rst +++ b/docs/source/getting_started/configuration.rst @@ -22,8 +22,8 @@ Some useful flags - ``-o`` to write the scene to a file and open the result. - ``-s`` to skip to the end and just show the final frame. - - ``-so`` will save the final frame to an image and show it. - + - ``-so`` will save the final frame to an image and show it. + - ``-n `` to skip ahead to the ``n``\ ’th animation of a scene. - ``-f`` to make the playback window fullscreen.