Clip Operators
- bpy.ops.clip.add_marker(*, location=(0.0, 0.0))
Place new marker at specified location
- Parameters:
location (
mathutils.Vector) – Location, Location of marker on frame (array of 2 items, in [-inf, inf], optional)- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.add_marker_at_click()
Place new marker at the desired (clicked) position
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.add_marker_move(*, CLIP_OT_add_marker={}, TRANSFORM_OT_translate={})
Add new marker and move it on movie
- Parameters:
CLIP_OT_add_marker (dict[str, Any]) – Add Marker, Place new marker at specified location (optional,
bpy.ops.clip.add_markerkeyword arguments)TRANSFORM_OT_translate (dict[str, Any]) – Move, Move selected items (optional,
bpy.ops.transform.translatekeyword arguments)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.add_marker_slide(*, CLIP_OT_add_marker={}, TRANSFORM_OT_translate={})
Add new marker and slide it with mouse until mouse button release
- Parameters:
CLIP_OT_add_marker (dict[str, Any]) – Add Marker, Place new marker at specified location (optional,
bpy.ops.clip.add_markerkeyword arguments)TRANSFORM_OT_translate (dict[str, Any]) – Move, Move selected items (optional,
bpy.ops.transform.translatekeyword arguments)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.apply_solution_scale(*, distance=0.0)
Apply scale on solution itself to make distance between selected tracks equals to desired
- Parameters:
distance (float) – Distance, Distance between selected tracks (in [-inf, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.average_tracks(*, keep_original=True)
Average selected tracks into active
- Parameters:
keep_original (bool) – Keep Original, Keep original tracks (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.bundles_to_mesh()
Create vertex cloud using coordinates of reconstructed tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.camera_preset_add(*, name='', remove_name=False, remove_active=False, use_focal_length=True)
Add or remove a Tracking Camera Intrinsics Preset
- Parameters:
name (str) – Name, Name of the preset, used to make the path name (optional, never None)
remove_name (bool) – remove_name, (optional)
remove_active (bool) – remove_active, (optional)
use_focal_length (bool) – Include Focal Length, Include focal length into the preset (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.change_frame(*, frame=0)
Interactively change the current frame number
- Parameters:
frame (int) – Frame, (in [-1048574, 1048574], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.clean_tracks(*, frames=0, error=0.0, action='SELECT')
Clean tracks with high error values or few frames
- Parameters:
frames (int) – Tracked Frames, Affect tracks which are tracked less than the specified number of frames (in [0, inf], optional)
error (float) – Reprojection Error, Affect tracks which have a larger reprojection error (in [0, inf], optional)
action (Literal['SELECT', 'DELETE_TRACK', 'DELETE_SEGMENTS']) –
Action, Cleanup action to execute (optional)
SELECTSelect – Select unclean tracks.DELETE_TRACKDelete Track – Delete unclean tracks.DELETE_SEGMENTSDelete Segments – Delete unclean segments of tracks.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.clear_solution()
Clear all calculated data
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.clear_track_path(*, action='REMAINED', clear_active=False)
Clear tracks after/before current position or clear the whole track
- Parameters:
action (Literal['UPTO', 'REMAINED', 'ALL']) –
Action, Clear action to execute (optional)
UPTOClear Up To – Clear path up to current frame.REMAINEDClear Remained – Clear path at remaining frames (after current).ALLClear All – Clear the whole path.
clear_active (bool) – Clear Active, Clear active track only instead of all selected tracks (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.constraint_to_fcurve()
Create F-Curves for object which will copy object’s movement caused by this constraint
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.copy_tracks()
Copy the selected tracks to the internal clipboard
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.create_plane_track()
Create new plane track out of selected point tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.cursor_set(*, location=(0.0, 0.0))
Set 2D cursor location
- Parameters:
location (
mathutils.Vector) – Location, Cursor location in normalized clip coordinates (array of 2 items, in [-inf, inf], optional)- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.delete_marker(*, confirm=True)
Delete marker for current frame from selected tracks
- Parameters:
confirm (bool) – Confirm, Prompt for confirmation (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.delete_proxy()
Delete movie clip proxy files from the hard drive
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.delete_track(*, confirm=True)
Delete selected tracks
- Parameters:
confirm (bool) – Confirm, Prompt for confirmation (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.detect_features(*, placement='FRAME', margin=16, threshold=0.5, min_distance=120)
Automatically detect features and place markers to track
- Parameters:
placement (Literal['FRAME', 'INSIDE_GPENCIL', 'OUTSIDE_GPENCIL']) –
Placement, Placement for detected features (optional)
FRAMEWhole Frame – Place markers across the whole frame.INSIDE_GPENCILInside Annotated Area – Place markers only inside areas outlined with the Annotation tool.OUTSIDE_GPENCILOutside Annotated Area – Place markers only outside areas outlined with the Annotation tool.
margin (int) – Margin, Only features further than margin pixels from the image edges are considered (in [0, inf], optional)
threshold (float) – Threshold, Threshold level to consider feature good enough for tracking (in [0.0001, inf], optional)
min_distance (int) – Distance, Minimal distance accepted between two features (in [0, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.disable_markers(*, action='DISABLE')
Disable/enable selected markers
- Parameters:
action (Literal['DISABLE', 'ENABLE', 'TOGGLE']) –
Action, Disable action to execute (optional)
DISABLEDisable – Disable selected markers.ENABLEEnable – Enable selected markers.TOGGLEToggle – Toggle disabled flag for selected markers.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.dopesheet_select_channel(*, location=(0.0, 0.0), extend=False)
Select movie tracking channel
- Parameters:
location (
mathutils.Vector) – Location, Mouse location to select channel (array of 2 items, in [-inf, inf], optional)extend (bool) – Extend, Extend selection rather than clearing the existing selection (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.dopesheet_view_all()
Reset viewable area to show full keyframe range
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.filter_tracks(*, track_threshold=5.0)
Filter tracks which has weirdly looking spikes in motion curves
- Parameters:
track_threshold (float) – Track Threshold, Filter Threshold to select problematic tracks (in [-inf, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.frame_jump(*, position='PATHSTART')
Jump to special frame
- Parameters:
position (Literal['PATHSTART', 'PATHEND', 'FAILEDPREV', 'FAILNEXT']) –
Position, Position to jump to (optional)
PATHSTARTPath Start – Jump to start of current path.PATHENDPath End – Jump to end of current path.FAILEDPREVPrevious Failed – Jump to previous failed frame.FAILNEXTNext Failed – Jump to next failed frame.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_center_current_frame()
Scroll view so current frame would be centered
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_delete_curve(*, confirm=True)
Delete track corresponding to the selected curve
- Parameters:
confirm (bool) – Confirm, Prompt for confirmation (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_delete_knot()
Delete curve knots
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_disable_markers(*, action='DISABLE')
Disable/enable selected markers
- Parameters:
action (Literal['DISABLE', 'ENABLE', 'TOGGLE']) –
Action, Disable action to execute (optional)
DISABLEDisable – Disable selected markers.ENABLEEnable – Enable selected markers.TOGGLEToggle – Toggle disabled flag for selected markers.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_select(*, location=(0.0, 0.0), extend=False)
Select graph curves
- Parameters:
location (
mathutils.Vector) – Location, Mouse location to select nearest entity (array of 2 items, in [-inf, inf], optional)extend (bool) – Extend, Extend selection rather than clearing the existing selection (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_select_all_markers(*, action='TOGGLE')
Change selection of all markers of active track
- Parameters:
action (Literal['TOGGLE', 'SELECT', 'DESELECT', 'INVERT']) –
Action, Selection action to execute (optional)
TOGGLEToggle – Toggle selection for all elements.SELECTSelect – Select all elements.DESELECTDeselect – Deselect all elements.INVERTInvert – Invert selection of all elements.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_select_box(*, xmin=0, xmax=0, ymin=0, ymax=0, wait_for_input=True, deselect=False, extend=True)
Select curve points using box selection
- Parameters:
xmin (int) – X Min, (in [-inf, inf], optional)
xmax (int) – X Max, (in [-inf, inf], optional)
ymin (int) – Y Min, (in [-inf, inf], optional)
ymax (int) – Y Max, (in [-inf, inf], optional)
wait_for_input (bool) – Wait for Input, (optional)
deselect (bool) – Deselect, Deselect rather than select items (optional)
extend (bool) – Extend, Extend selection instead of deselecting everything first (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.graph_view_all()
View all curves in editor
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.hide_tracks(*, unselected=False)
Hide selected tracks
- Parameters:
unselected (bool) – Unselected, Hide unselected tracks (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.hide_tracks_clear()
Clear hide selected tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.join_tracks()
Join selected tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.keyframe_delete()
Delete a keyframe from selected tracks at current frame
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.keyframe_insert()
Insert a keyframe to selected tracks at current frame
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.lock_selection_toggle()
Toggle Lock Selection option of the current clip editor
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.lock_tracks(*, action='LOCK')
Lock/unlock selected tracks
- Parameters:
action (Literal['LOCK', 'UNLOCK', 'TOGGLE']) –
Action, Lock action to execute (optional)
LOCKLock – Lock selected tracks.UNLOCKUnlock – Unlock selected tracks.TOGGLEToggle – Toggle locked flag for selected tracks.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.mode_set(*, mode='TRACKING')
Set the clip interaction mode
- Parameters:
mode (Literal[Clip Editor Mode Items]) – Mode, (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.new_image_from_plane_marker()
Create new image from the content of the plane marker
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.open(*, directory='', files=None, hide_props_region=True, check_existing=False, filter_blender=False, filter_backup=False, filter_image=True, filter_movie=True, filter_python=False, filter_font=False, filter_sound=False, filter_text=False, filter_archive=False, filter_btx=False, filter_alembic=False, filter_usd=False, filter_obj=False, filter_volume=False, filter_folder=True, filter_blenlib=False, filemode=9, relative_path=True, show_multiview=False, use_multiview=False, display_type='DEFAULT', sort_method='')
Load a sequence of frames or a movie file
- Parameters:
directory (str) – Directory, Directory of the file (optional, never None)
files (
bpy_prop_collection[OperatorFileListElement]) – Files, (optional)hide_props_region (bool) – Hide Operator Properties, Collapse the region displaying the operator settings (optional)
check_existing (bool) – Check Existing, Check and warn on overwriting existing files (optional)
filter_blender (bool) – Filter .blend files, (optional)
filter_backup (bool) – Filter .blend files, (optional)
filter_image (bool) – Filter image files, (optional)
filter_movie (bool) – Filter movie files, (optional)
filter_python (bool) – Filter Python files, (optional)
filter_font (bool) – Filter font files, (optional)
filter_sound (bool) – Filter sound files, (optional)
filter_text (bool) – Filter text files, (optional)
filter_archive (bool) – Filter archive files, (optional)
filter_btx (bool) – Filter btx files, (optional)
filter_alembic (bool) – Filter Alembic files, (optional)
filter_usd (bool) – Filter USD files, (optional)
filter_obj (bool) – Filter OBJ files, (optional)
filter_volume (bool) – Filter OpenVDB volume files, (optional)
filter_folder (bool) – Filter folders, (optional)
filter_blenlib (bool) – Filter Blender IDs, (optional)
filemode (int) – File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file (in [1, 9], optional)
relative_path (bool) – Relative Path, Select the file relative to the blend file (optional)
show_multiview (bool) – Enable Multi-View, (optional)
use_multiview (bool) – Use Multi-View, (optional)
display_type (Literal['DEFAULT', 'LIST_VERTICAL', 'LIST_HORIZONTAL', 'THUMBNAIL']) –
Display Type, (optional)
DEFAULTDefault – Automatically determine display type for files.LIST_VERTICALShort List – Display files as short list.LIST_HORIZONTALLong List – Display files as a detailed list.THUMBNAILThumbnails – Display files as thumbnails.
sort_method (Literal['DEFAULT', 'FILE_SORT_ALPHA', 'FILE_SORT_EXTENSION', 'FILE_SORT_TIME', 'FILE_SORT_SIZE', 'ASSET_CATALOG']) –
File sorting mode, (optional)
DEFAULTDefault – Automatically determine sort method for files.FILE_SORT_ALPHAName – Sort the file list alphabetically.FILE_SORT_EXTENSIONExtension – Sort the file list by extension/type.FILE_SORT_TIMEModified Date – Sort files by modification time.FILE_SORT_SIZESize – Sort files by size.ASSET_CATALOGAsset Catalog – Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.paste_tracks()
Paste tracks from the internal clipboard
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.prefetch()
Prefetch frames from disk for faster playback/tracking
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.rebuild_proxy()
Rebuild all selected proxies and timecode indices in the background
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.refine_markers(*, backwards=False)
Refine selected markers positions by running the tracker from track’s reference to current frame
- Parameters:
backwards (bool) – Backwards, Do backwards tracking (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.reload()
Reload clip
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.select(*, extend=False, deselect_all=False, location=(0.0, 0.0))
Select tracking markers
- Parameters:
extend (bool) – Extend, Extend selection rather than clearing the existing selection (optional)
deselect_all (bool) – Deselect On Nothing, Deselect all when nothing under the cursor (optional)
location (
mathutils.Vector) – Location, Mouse location in normalized coordinates, 0.0 to 1.0 is within the image bounds (array of 2 items, in [-inf, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.select_all(*, action='TOGGLE')
Change selection of all tracking markers
- Parameters:
action (Literal['TOGGLE', 'SELECT', 'DESELECT', 'INVERT']) –
Action, Selection action to execute (optional)
TOGGLEToggle – Toggle selection for all elements.SELECTSelect – Select all elements.DESELECTDeselect – Deselect all elements.INVERTInvert – Invert selection of all elements.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.select_box(*, xmin=0, xmax=0, ymin=0, ymax=0, wait_for_input=True, mode='SET')
Select markers using box selection
- Parameters:
xmin (int) – X Min, (in [-inf, inf], optional)
xmax (int) – X Max, (in [-inf, inf], optional)
ymin (int) – Y Min, (in [-inf, inf], optional)
ymax (int) – Y Max, (in [-inf, inf], optional)
wait_for_input (bool) – Wait for Input, (optional)
mode (Literal['SET', 'ADD', 'SUB']) –
Mode, (optional)
SETSet – Set a new selection.ADDExtend – Extend existing selection.SUBSubtract – Subtract existing selection.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.select_circle(*, x=0, y=0, radius=25, wait_for_input=True, mode='SET')
Select markers using circle selection
- Parameters:
x (int) – X, (in [-inf, inf], optional)
y (int) – Y, (in [-inf, inf], optional)
radius (int) – Radius, (in [1, inf], optional)
wait_for_input (bool) – Wait for Input, (optional)
mode (Literal['SET', 'ADD', 'SUB']) –
Mode, (optional)
SETSet – Set a new selection.ADDExtend – Extend existing selection.SUBSubtract – Subtract existing selection.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.select_grouped(*, group='ESTIMATED')
Select all tracks from specified group
- Parameters:
group (Literal['KEYFRAMED', 'ESTIMATED', 'TRACKED', 'LOCKED', 'DISABLED', 'COLOR', 'FAILED']) –
Action, Clear action to execute (optional)
KEYFRAMEDKeyframed Tracks – Select all keyframed tracks.ESTIMATEDEstimated Tracks – Select all estimated tracks.TRACKEDTracked Tracks – Select all tracked tracks.LOCKEDLocked Tracks – Select all locked tracks.DISABLEDDisabled Tracks – Select all disabled tracks.COLORTracks with Same Color – Select all tracks with same color as active track.FAILEDFailed Tracks – Select all tracks which failed to be reconstructed.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.select_lasso(*, path=None, use_smooth_stroke=False, smooth_stroke_factor=0.75, smooth_stroke_radius=35, mode='SET')
Select markers using lasso selection
- Parameters:
path (
bpy_prop_collection[OperatorMousePath]) – Path, (optional)use_smooth_stroke (bool) – Stabilize Stroke, Selection lags behind mouse and follows a smoother path (optional)
smooth_stroke_factor (float) – Smooth Stroke Factor, Higher values gives a smoother stroke (in [0.5, 0.99], optional)
smooth_stroke_radius (int) – Smooth Stroke Radius, Minimum distance from last point before selection continues (in [10, 200], optional)
mode (Literal['SET', 'ADD', 'SUB']) –
Mode, (optional)
SETSet – Set a new selection.ADDExtend – Extend existing selection.SUBSubtract – Subtract existing selection.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_active_clip()
Undocumented, consider contributing.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.set_axis(*, axis='X')
Set the direction of a scene axis by rotating the camera (or its parent if present). This assumes that the selected track lies on a real axis connecting it to the origin
- Parameters:
axis (Literal['X', 'Y']) –
Axis, Axis to use to align bundle along (optional)
XX – Align bundle align X axis.YY – Align bundle align Y axis.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_origin(*, use_median=False)
Set active marker as origin by moving camera (or its parent if present) in 3D space
- Parameters:
use_median (bool) – Use Median, Set origin to median point of selected bundles (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_plane(*, plane='FLOOR')
Set plane based on 3 selected bundles by moving camera (or its parent if present) in 3D space
- Parameters:
plane (Literal['FLOOR', 'WALL']) –
Plane, Plane to be used for orientation (optional)
FLOORFloor – Set floor plane.WALLWall – Set wall plane.
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_scale(*, distance=0.0)
Set scale of scene by scaling camera (or its parent if present)
- Parameters:
distance (float) – Distance, Distance between selected tracks (in [-inf, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_scene_frames()
Set scene’s start and end frame to match clip’s start frame and length
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_solution_scale(*, distance=0.0)
Set object solution scale using distance between two selected tracks
- Parameters:
distance (float) – Distance, Distance between selected tracks (in [-inf, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_solver_keyframe(*, keyframe='KEYFRAME_A')
Set keyframe used by solver
- Parameters:
keyframe (Literal['KEYFRAME_A', 'KEYFRAME_B']) – Keyframe, Keyframe to set (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.set_viewport_background()
Set current movie clip as a camera background in 3D Viewport (works only when a 3D Viewport is visible)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.setup_tracking_scene()
Prepare scene for compositing 3D objects into this footage
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.slide_marker(*, offset=(0.0, 0.0))
Slide marker areas
- Parameters:
offset (
mathutils.Vector) – Offset, Offset in floating-point units, 1.0 is the width and height of the image (array of 2 items, in [-inf, inf], optional)- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.slide_plane_marker()
Slide plane marker areas
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.solve_camera()
Solve camera motion from tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.stabilize_2d_add()
Add selected tracks to 2D translation stabilization
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.stabilize_2d_remove()
Remove selected track from translation stabilization
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.stabilize_2d_rotation_add()
Add selected tracks to 2D rotation stabilization
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.stabilize_2d_rotation_remove()
Remove selected track from rotation stabilization
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.stabilize_2d_rotation_select()
Select tracks which are used for rotation stabilization
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.stabilize_2d_select()
Select tracks which are used for translation stabilization
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.track_color_preset_add(*, name='', remove_name=False, remove_active=False)
Add or remove a Clip Track Color Preset
- Parameters:
name (str) – Name, Name of the preset, used to make the path name (optional, never None)
remove_name (bool) – remove_name, (optional)
remove_active (bool) – remove_active, (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.track_copy_color()
Copy color to all selected tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.track_markers(*, backwards=False, sequence=False)
Track selected markers
- Parameters:
backwards (bool) – Backwards, Do backwards tracking (optional)
sequence (bool) – Track Sequence, Track marker during image sequence rather than single image (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.track_settings_as_default()
Copy tracking settings from active track to default settings
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.track_settings_to_track()
Copy tracking settings from active track to selected tracks
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.track_to_empty()
Create an Empty object which will be copying movement of active track
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.tracking_object_new()
Add new object for tracking
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.tracking_object_remove()
Remove object for tracking
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.tracking_settings_preset_add(*, name='', remove_name=False, remove_active=False)
Add or remove a motion tracking settings preset
- Parameters:
name (str) – Name, Name of the preset, used to make the path name (optional, never None)
remove_name (bool) – remove_name, (optional)
remove_active (bool) – remove_active, (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- File:
- bpy.ops.clip.update_image_from_plane_marker()
Update current image used by plane marker from the content of the plane marker
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_all(*, fit_view=False)
View whole image with markers
- Parameters:
fit_view (bool) – Fit View, Fit frame to the viewport (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_center_cursor()
Center the view so that the cursor is in the middle of the view
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_ndof()
Use a 3D mouse device to pan/zoom the view
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_pan(*, offset=(0.0, 0.0))
Pan the view
- Parameters:
offset (
mathutils.Vector) – Offset, Offset in floating-point units, 1.0 is the width and height of the image (array of 2 items, in [-inf, inf], optional)- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_selected()
View all selected elements
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_zoom(*, factor=0.0, use_cursor_init=True)
Zoom in/out the view
- Parameters:
factor (float) – Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out (in [-inf, inf], optional)
use_cursor_init (bool) – Use Mouse Position, Allow the initial mouse position to be used (optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_zoom_in(*, location=(0.0, 0.0))
Zoom in the view
- Parameters:
location (
mathutils.Vector) – Location, Cursor location in screen coordinates (array of 2 items, in [-inf, inf], optional)- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_zoom_out(*, location=(0.0, 0.0))
Zoom out the view
- Parameters:
location (
mathutils.Vector) – Location, Cursor location in normalized (0.0 to 1.0) coordinates (array of 2 items, in [-inf, inf], optional)- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]
- bpy.ops.clip.view_zoom_ratio(*, ratio=0.0)
Set the zoom ratio (based on clip size)
- Parameters:
ratio (float) – Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out (in [-inf, inf], optional)
- Returns:
Result of the operator call.
- Return type:
set[Literal[Operator Return Items]]