[Scripting] Setting Clip V-FLIP does not work
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)