How to create DaVinci Resolve color grading groups based on the multicam camera angle. This video shows my workaround for not being able to filter multicam clips in the color page in Resolve. It will show you how to do multicam color correction using groups where each group is a different camera angle. You can do this by sorting the multicam clips by the source camera for color grading.
▶ Subscribe now for more DaVinci Resolve tutorials!
▶ Want great music, SFX, and AI voiceovers? Get your Epidemic Sound FREE trial today: https://www.epidemicsound.com/referra... (affiliate link*)
▶ Get my Resolve Editing Field Manual: https://jason-roberts-shop.fourthwall...
▶ Learn my 52 Laws of Video: https://bit.ly/52-laws-of-video
TIMESTAMPS:
00:00 How to filter multicam clips by angle in the color page
00:18 The problem
00:47 My workaround
03:00 Change angles after grading
*AFFILIATE DISCLOSURE: Some of the links in my video description are affiliate links, which means I may make a small commission if you click them and make a qualifying purchase - this should not cost you any more and it's a small way you can help support the channel. As an Epidemic Sound Ambassador I earn commissions on eligible purchases and receive a free subscription.
#davinciresolve #davinciresolvetutorial #davinciresolvetraining
THE SCRIPT:
Copyright 2023 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.
(copy everything below this line)
--[[
Valid clip colors you can use:
"Orange"
"Apricot"
"Yellow"
"Lime"
"Olive"
"Green"
"Teal"
"Navy"
"Blue"
"Purple"
"Violet"
"Pink"
"Tan"
"Beige"
"Brown"
"Chocolate"
]]
-- === CONFIGURATION ===
local targetText = "Angle 2" -- Text to match in clip names
local clipColor = "Tan" -- Color to set on matching clips
-- ======================
-- Get the Resolve instance
resolve = Resolve()
pm = resolve:GetProjectManager()
project = pm:GetCurrentProject()
timeline = project:GetCurrentTimeline()
if not timeline then
print("No active timeline found.")
return
end
print("Scanning clips on timeline: " .. timeline:GetName())
-- Get the number of video tracks
local trackCount = timeline:GetTrackCount("video")
for trackIndex = 1, trackCount do
local clips = timeline:GetItemListInTrack("video", trackIndex)
for _, clip in ipairs(clips) do
local name = clip:GetName()
if name:find(targetText) then
local success = clip:SetClipColor(clipColor)
if success then
print("Set clip color to " .. clipColor .. " for: " .. name)
else
print("Failed to set clip color for: " .. name)
end
end
end
end