Comment 3 for bug 1365851

Revision history for this message
Wolfgang Flatter (78luphr0rnk2nuqimstywepozxn9kl19tqh0tx66b5dki1xxsh5mkz9gl21a5rlwfnr8jn6ln0m3jxne2k9x1ohg85w3jabxlrqbgszpjpwcmvkbcvq9spp6z3w5j1m33k06tlsfszeuscyt241hasoyapndax-launchpad-a811i2i3ytqlsztthjth0svbccw8inm65tmkqp9sarr553jq53in4xm1m8wn3o4rlwaer06ogwvqwv9mrqoku2x334n7di44o65qze67n1wneepmidnuwnde1rqcbpgdf70gtqq2x9thj5tlcsac12abiuk2rb) wrote :

Hello,

there is a workaround, you can read on http://www.mp-development.de/blog/18-openshot-blender-titelanimation-transparenz-fehler (german language)

you have to edit the phython-script files which controls the blender rendering in /usr/share/pyshared/openshot/blender/scripts/

1) search for:
            'color' : [0.8,0.8,0.8],
            'alpha' : 1.0,

and add the line:
            'alpha_mode' : 'TRANSPARENT',

2) search for:
except:
    bpy.context.scene.render.image_settings.file_format = params["file_format"]
    bpy.context.scene.render.image_settings.color_mode = params["color_mode"]

and add the lines:
try:
    bpy.context.scene.render.alpha_mode = params["alpha_mode"]
except:
    pass

Please fix the scripts. without the transparency working directly, this function is completely useless!