Jonas Herzig
7615499cef
Add option to preserve alpha channel in export ( closes #661 )
...
Default off cause it being on by default had confused quite a few people.
2022-03-06 13:39:49 +01:00
Jonas Herzig
fe67d7fa14
Link to our docs in the "Missing ffmpeg" screen ( closes #663 )
2022-03-06 13:39:49 +01:00
Jonas Herzig
463c51be85
Convert getDefaultRenderSettings into default constructor
...
Allows us to completely get rid of the custom Gson instance and is more
idiomatic anyway.
2021-08-15 11:45:23 +02:00
Jonas Herzig
9626a4c442
Fix parsing of render queue with chroma key ( fixes #564 )
...
By simply replacing the private field with a concrete type, so we do not need to
manually register one when constructing the gson instance (which is evidently
too easy to forget about).
2021-08-15 11:39:10 +02:00
Jonas Herzig
3cba99068e
Increase default bitrate to from 10 to 20mbps
2021-07-31 14:37:10 +02:00
Jonas Herzig
2891c4e8fa
Remove MP4 Default Quality preset ( closes #475 )
...
Similar to High Quality, it is too unpredictable, sometimes giving bad quality
and sometimes being unbearably slow. We should just encourage everyone to set
their bitrate manually.
2021-07-24 12:59:06 +02:00
Jonas Herzig
7ab2edd738
Implement ODS rendering via Iris Shader for MC 1.17
2021-07-01 14:05:52 +02:00
Jonas Herzig
dda6bd41b6
Implement ffmpeg-independent PNGWriter ( closes #476 )
...
Creates a dedicated folder for each video and does not depend on ffmpeg, just
like the EXRWriter (but supporting all MC versions).
Also does 32 bit depth export by chunking the 32-bit float into the 8-bit BGRA
component channels.
2021-03-14 12:12:53 +01:00
Jonas Herzig
8c2d7d096c
Merge branch 'stable' into develop
2021-02-19 11:58:28 +01:00
Jonas Herzig
a5f874e571
Fix crash with certain render output file values ( fixes #396 )
2021-02-17 01:19:29 +01:00
Jonas Herzig
57c7362e34
Merge branch 'stable' into develop
2020-11-22 17:10:27 +01:00
Jonas Herzig
4739d2278b
Fix render settings not saving when rendering ( fixes #425 )
...
Clicking Cancel or Add to Queue does save them but clicking Render does not.
This is caused by the fact that the GuiRenderSettings are now a popup and no
longer their own screen, so to close them, we need to call its close method, not
close the entire screen.
2020-11-22 14:53:40 +01:00
Jonas Herzig
ec862f0596
Update jGui
2020-11-07 13:18:10 +01:00
Jonas Herzig
dd5935649d
Do not rely on error handling popup for sodium info ( fixes #392 )
...
Instead we now disable all the Render buttons and give them a tooltip. Much more
user-friendly.
2020-11-06 18:54:54 +01:00
Jonas Herzig
d3230e1e38
Add camera path export ( closes #391 )
2020-11-06 18:54:52 +01:00
Jonas Herzig
d8135d9038
Add depth map export ( closes #371 )
2020-11-06 11:41:38 +01:00
Jonas Herzig
2b6d1b2359
Add OpenEXR export option
...
In preparation for depth map export.
2020-11-06 11:41:38 +01:00
Jonas Herzig
17e554b67c
Rename VideoWriter -> FFmpegWriter
2020-10-03 14:52:58 +02:00
Jonas Herzig
f623bb3ee7
Add reset button to export command settings ( closes #356 )
2020-09-06 11:45:37 +02:00
Jonas Herzig
4a6c0acc8b
Add "Add to Queue" button to keyframe repository ( closes #168 )
2020-08-29 19:13:59 +02:00
Jonas Herzig
1188ce4360
Swap parent relation between render settings and queue
...
Previously you'd access the render queue from the render settings screen which
was arguably the wrong way around (e.g. you weren't able to access the queue
when your current keyframes were incorrect even if you only wanted to render
those in the queue).
Now the render button opens the queue which can open a new settings popup. To
save people who don't need the queue from always having to go through it, the
queue will immediately open a new settings popup if does not yet have any jobs.
2020-08-29 19:13:04 +02:00
Jonas Herzig
d95af541c7
Default render queue job name to output file name ( closes #267 )
2020-08-29 14:27:07 +02:00
LindaJuffermans
9c3c76e70d
Added NULL check for missing encodingPreset ( fixes #288 )
2020-08-03 10:23:50 +02:00
Jonas Herzig
fc1ae0e109
Hide unsupported render methods in settings gui ( fixes #284 )
2020-07-25 17:02:24 +02:00
Jonas Herzig
e83805bee6
Remove MP4_HIGH preset ( fixes #254 )
...
It results in unreasonably high bit rates which regularly confuses users.
The Custom preset should generally be preferred.
2020-07-13 16:04:39 +02:00
Jonas Herzig
a6f5931e7e
Fix output file render setting not being saved ( fixes #229 )
2020-06-28 21:12:12 +02:00
Jonas Herzig
513f53f1ee
Open output file popup in folder and with name of current file
2020-06-28 21:12:12 +02:00
Jonas Herzig
9fb4dce367
Reset export arguments when upgrading from old version ( fixes #148 )
2020-05-08 09:45:06 +02:00
Jonas Herzig
72ce522813
Ensure task queue is not locked during rendering ( fixes #157 )
...
Similar to 3fedc22 in effect and cause. However tasks are executed, they just
cannot be submitted pre-1.14 because MC would continuously hold the lock on the
scheduledTasks queue for the entire renderVideo call.
2020-05-07 14:11:02 +02:00
Jonas Herzig
3be3072082
Run video rendering from runLater
...
Prevents any issues arising from the fact that we would otherwise be somewhere
deep in the GUI lib button handling call stack.
2020-04-07 14:51:16 +02:00
Jonas Herzig
b119d2d127
./gradlew :1.15.2:setCoreVersion
...
Also `./gradlew :jGui:1.15.2:setCoreVersion`.
2020-04-06 13:18:37 +02:00
Jonas Herzig
4ea13051fd
Disable Blend render mode on 1.15 for now
2020-04-02 10:54:19 +02:00
Jonas Herzig
214da6ba59
Update to MC 1.14.3
2019-06-24 18:36:12 +02:00
Jonas Herzig
73723ed9e2
Guard against broken render settings file
2019-06-14 22:09:56 +02:00
Jonas Herzig
d15fa6a3f9
Fix notice screen back buttons not being hooked up
2019-06-14 22:09:56 +02:00
Jonas Herzig
e5ee6a3d94
Update to MC 1.14.1
...
The ReplayStudio update also fixes an issue with reading the
PlayerListEntryPacket leading to NPEs during Quick Mode.
2019-05-20 14:59:31 +02:00
Jonas Herzig
7cbf7f7c94
Switch core to 1.14 (generated via ./gradlew :1.14:setCoreVersion)
2019-05-10 14:09:22 +02:00
Jonas Herzig
3d009e45c7
Update to MC 1.14 / Fabric
2019-05-04 15:27:03 +02:00
Jonas Herzig
1e1104f4d3
Add blend export to GuiRenderSettings
2019-03-14 18:20:17 +01:00
Jonas Herzig
106f14d8c7
Merge branch 'johni/1.13-pre' into johni/blend
2019-03-13 16:07:32 +01:00
Jonas Herzig
cdcd6f6893
Get render module mostly working
2019-03-10 16:59:59 +01:00
Jonas Herzig
f13f2dda1c
Get extras module compiling on 1.13
...
Remove LocalizationExtra (too much update work for too little gain)
2019-03-02 09:59:57 +01:00
Jonas Herzig
344a550dc1
Get render module compiling on 1.13
2019-03-01 17:22:50 +01:00
Jonas Herzig
65295b311e
Merge branch 'spherical-fov' into develop
2018-12-19 10:20:23 +01:00
CrushedPixel
2f44d5f380
GuiRenderSettings: Fix bitrate label
2018-12-06 14:47:29 +01:00
CrushedPixel
7c3fcd4e42
Adjustments for consistency
2018-12-06 14:18:55 +01:00
CrushedPixel
a7ec6524b7
Add FOV slider for spherical render methods
...
Before uploading to YouTube, convert all spherical non-mp4 files to mp4 to be able to inject metadata
Properly re-throw errors during the rendering pipeline
2018-12-06 01:29:31 +01:00
Jonas Herzig
c48187e784
Disable .blend export for 1.7.10
2018-06-11 00:31:50 +02:00
CrushedPixel
2ebec358e0
Added Screenshot export settings GUI
2017-11-01 13:24:52 +01:00
Jonas Herzig
b9ea572e19
Try to handle invalid ffmpeg arguments more gracefully ( fixes #77 )
...
Instead of outright crashing, if the user has modified the ffmpeg arguments,
they are given the chance to re-try with the defaults.
2017-08-12 11:38:11 +02:00