virtualx-engine/servers/rendering
reduz 5786516d4d Implement Running Godot as Movie Writer
* Allows running the game in "movie writer" mode.
* It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time).
* If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult.
* Implements a simple, default MJPEG writer.

This new features has two main use cases, which have high demand:
* Saving game videos in high quality and ensuring the frame rate is *completely* stable, always.
* Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this).

**Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly).

Usage:

$ godot --write-movie movie.avi [scene_file.tscn]

Missing:

* Options for configuring video writing via GLOBAL_DEF
* UI Menu for launching with this mode from the editor.
* Add to list of command line options.
* Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings).
2022-06-21 11:28:47 +02:00
..
dummy Initial TAA implementation 2022-06-07 13:14:44 +02:00
renderer_rd Fix glow in Mix mode not working correctly when FXAA is enabled 2022-06-15 22:23:56 +02:00
storage Add clipping, backbuffer, and CanvasGroups to 2D GLES3 renderer 2022-05-24 11:00:34 -07:00
renderer_canvas_cull.cpp Add a new HashSet template 2022-05-20 22:40:38 +02:00
renderer_canvas_cull.h Add a new HashSet template 2022-05-20 22:40:38 +02:00
renderer_canvas_render.cpp Remove mesh and particles RD dependencies from canvas rendering server 2022-05-26 10:43:37 -07:00
renderer_canvas_render.h Remove mesh and particles RD dependencies from canvas rendering server 2022-05-26 10:43:37 -07:00
renderer_compositor.cpp SkyShaders working 2022-05-11 21:00:21 -07:00
renderer_compositor.h SkyShaders working 2022-05-11 21:00:21 -07:00
renderer_scene.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
renderer_scene.h Initial TAA implementation 2022-06-07 13:14:44 +02:00
renderer_scene_cull.cpp Initial TAA implementation 2022-06-07 13:14:44 +02:00
renderer_scene_cull.h Initial TAA implementation 2022-06-07 13:14:44 +02:00
renderer_scene_occlusion_cull.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
renderer_scene_occlusion_cull.h Fix typo in occlusion culling warning method name 2022-05-23 09:34:28 +02:00
renderer_scene_render.cpp Initial TAA implementation 2022-06-07 13:14:44 +02:00
renderer_scene_render.h Initial TAA implementation 2022-06-07 13:14:44 +02:00
renderer_storage.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
renderer_storage.h Add a new HashSet template 2022-05-20 22:40:38 +02:00
renderer_thread_pool.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
renderer_thread_pool.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
renderer_viewport.cpp Implement Running Godot as Movie Writer 2022-06-21 11:28:47 +02:00
renderer_viewport.h Implement Running Godot as Movie Writer 2022-06-21 11:28:47 +02:00
rendering_device.cpp Merge pull request #53857 from briansemrau/rd-free-rid-bind-rename 2022-01-20 17:24:34 +01:00
rendering_device.h Add get_video_adapter_api_version() to RenderingServer 2022-05-03 01:18:35 +02:00
rendering_device_binds.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
rendering_device_binds.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
rendering_server_default.cpp Ensure has_os_features is safely called as it can't be called from within the construct of RenderingServerDefault on which it relies 2022-06-01 20:47:32 +10:00
rendering_server_default.h Implement Running Godot as Movie Writer 2022-06-21 11:28:47 +02:00
rendering_server_globals.cpp Moved particles into ParticlesStorage 2022-04-17 13:13:22 +10:00
rendering_server_globals.h Moved particles into ParticlesStorage 2022-04-17 13:13:22 +10:00
SCsub Split dummy renderer classes into separate files 2022-03-16 17:43:10 +11:00
shader_compiler.cpp Refactor shader hints 2022-05-31 11:51:47 +03:00
shader_compiler.h Refactor shader hints 2022-05-31 11:51:47 +03:00
shader_language.cpp Remove GLES2 shader constraints from GLES3 2022-06-14 12:01:52 -07:00
shader_language.h Remove GLES2 shader constraints from GLES3 2022-06-14 12:01:52 -07:00
shader_types.cpp Use IGN instead of white noise for sky dithering 2022-05-24 10:57:07 -07:00
shader_types.h Add a new HashSet template 2022-05-20 22:40:38 +02:00
shader_warnings.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
shader_warnings.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00