Skip to content

Releases: ElDonad/3D-stinger-transition

First release candidate

04 Sep 10:45
Compare
Choose a tag to compare
Pre-release

First release candidate

Lots of changes since the last release, beginning with the addition of a new mode of movement description : interpolation ! Instead of describing the scene's movement as a stack of transforms, the scene's position is recorded x times each frame (depending on the chosen resolution), and the OBS plugin uses this data to approximate the best it can the scene's actual position during the transition.

Also, the blender plugin is out quick user guide :

  • Download the file addon.py down below, go to in Blender go to Edit > Preferences > Add-ons, hit the Install button and provide the downloaded file.

  • Now select the object to be tracked in OBS, and go to Object > Export transform to OBS (also under F3). Specify the subframe resolution and the swap frame on the right, enter a valid filename (ex : data.json), and hit Export. Now you should have a json file ready to import in OBS !

Note : remember to use the provided base scene as a template for creating your own transitions, the plugin may not work correctly if used in a generic blender scene.

The json format has changed to reflect these additions. See the provided examples for more information. The movement description by transform is still there for convenience, but will not be used by the blender addon, the reason being I would have had to support all possible transformations an object can be subjected to by blender, and that seemed way more complex than just exporting a bunch of positions/rotations/scales.

Also the transition now sets its own duration based on the length of the video.

This is a release candidate, meaning all the functionalities are there, but there may be some bugs still left. If you stumble across one of them, fell free to open an issue here, complain about it on the OBS Forum, or even issue a PR !

Custom JSON microcode

26 Jun 16:07
Compare
Choose a tag to compare

The transformation can now be controlled via inputting a JSON formatted text that describes the movement. Sample below :

{
	"swap_time": 0.5,
	"transforms": [
		{
			"begin_frame": 0.5,
			"end_frame": 0.7,
			"easing": "sinusoidal | linear | constant",
			"transformation": "scale | translation | rotation",
			"params": {
				"x": 1.0,
				"y": 0.1,
				"z": 1.0,
				"w(optional)": 1.0
			}
		}
	]
}

begin_frame, end_frame, swap_time all range from 0 to 1 and are scaled with the transition's duration.

transforms is an array containing all the transformations to be applied to the frame, in order. For rotation, x, y and z specify the axis of rotation, while w is the angle of rotation.

It is advised to create such a file in a separate text editor, then paste it in the appropriate field, as OBS refreshing the transition each time you input a character will make for a very unpleasant experience.

Bugfixes

07 Jun 07:48
Compare
Choose a tag to compare

A small update to fix bugs that lead to the crash of the plugin. The installer has been also improved.

First alpha version

06 Jun 19:37
Compare
Choose a tag to compare
0.1

first commit