Page 1 of 1

[Scripting] Setting Clip V-FLIP does not work

PostPosted: Thu Dec 24, 2020 12:41 am
by Andrew Bode
I'm able to set 'H-FLIP' but setting 'V-FLIP' does not work. It returns true even though it is not successful. Has anyone else encountered this? I'm assuming it's a bug and not expected behavior. Resolve Studio 16.2.8 | Windows 10

Code: Select all
from python_get_resolve import GetResolve

resolve = GetResolve()
projectManager = resolve.GetProjectManager()
project = projectManager.GetCurrentProject()
timeline = project.GetCurrentTimeline()
mediaPool = project.GetMediaPool()

video = timeline.GetCurrentVideoItem()
mpClip= video.GetMediaPoolItem()

isSuccess = mpClip.SetClipProperty('H-FLIP', 'On')
print(isSuccess)
isSuccess = mpClip.SetClipProperty('V-FLIP', 'On')
print(isSuccess)