DaVinci Resolve set angle for multiple clips at the same time

Поділитися
Вставка
  • Опубліковано 6 вер 2024
  • How to set the angle name for multiple clips at the same time in DaVinci Resolve.
    ▶ Support me by getting my DaVinci Resolve Editing: Field Manual jason-roberts-...
    ▷ Get my book today - The 52 Laws of Video: jason-roberts-...
    FREE SCRIPT:
    License: Copyright 2024 Jason Roberts. No part of this software may be transmitted or reproduced in any form or by any means without prior written permission from the author. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    IMPORTANT: Backup you project/database before using. Make sure the bin is selected where all clips will have their angle changed. Change xxxxxxxxxxxxxx to the name you want to give to the clips' angles.
    local pman = resolve:GetProjectManager()
    local proj = pman:GetCurrentProject()
    local mpool = proj:GetMediaPool()
    local bin = mpool:GetCurrentFolder()
    local clips = bin:GetClipList()
    print(string.format("Changing angle name for %d clips in currently selected bin: %s", #clips, bin:GetName()))
    for _, c in ipairs(clips) do
    c:SetClipProperty("Angle", "xxxxxxxxxxxxxx")
    end

КОМЕНТАРІ • 2

  • @oclaser
    @oclaser 3 місяці тому

    I have a long way before I get to this point 😀