▶ My DaVinci Resolve Fairlight course: [ Ссылка ] (save $40 USD - ends January 17, 2025 7:24 PM PST)
How to export multiple videos from a single timeline in DaVinci Resolve.
▶ Download the Scripts - use different marker colors, all markers, or markers that contain specific marker note text: [ Ссылка ]
Free script at the bottom of this description.
▶ DaVinci Resolve Editing: Field Manual [ Ссылка ]
▷ Get my book today - The 52 Laws of Video: [ Ссылка ]
▶ Free tips & tutorials email newsletter: [ Ссылка ]
GEAR I USE (contains affiliate links*):
== Cameras & Lenses ==
▷ Main A video camera: [ Ссылка ]
▷ B video/photo camera: [ Ссылка ]
▷ Best Sony prime full frame vlogging lens: [ Ссылка ]
▷ 24-70mm 2.8 lens: [ Ссылка ]
▷ 70-200mm b-roll lens [ Ссылка ]
▷ Tough SD card for Sony a7S III: [ Ссылка ]
▷ 2-5 stop Variable ND filter: [ Ссылка ]
▷ 6-9 stop Variable ND filter: [ Ссылка ]
▷ Variable ND Step-Up Rings: [ Ссылка ]
▷ Canon EF to Sony E mount lens adapter: [ Ссылка ]
== Microphones & Audio ==
▷ Wireless microphone kit with 2 transmitters: [ Ссылка ]
▷ External shotgun microphone with safety track feature: [ Ссылка ]
== Lighting ==
▷ Professional battery-powerable 300W bi-color key light: [ Ссылка ]
▷ Professional battery-powerable bi-color spot/flood light: [ Ссылка ]
▷ Affordable 60W bi-color light: [ Ссылка ]
▷ Daylight balanced key/fill light: [ Ссылка ]
▷ Short RGBWW tube lights with app control: [ Ссылка ]
== Drone ==
▷ Lightweight drone (with built-in-screen controller): [ Ссылка ]
▷ Drone long range batteries: [ Ссылка ]
▷ Best drone SD card: [ Ссылка ]
▷ Drone all day ND filter pack: [ Ссылка ]
▷ Drone darker ND filter pack: [ Ссылка ]
== Other ==
▷ Exposure and color chart [ Ссылка ]
▷ Hiking camera bag: [ Ссылка ]
▷ Wonder wallet of organization: [ Ссылка ]
▷ Little camera cube box for filters and stuff: [ Ссылка ]
▷ Air blower: [ Ссылка ]
▷ Phone case with accessory mount: [ Ссылка ]
▷ Pocket-friendly tripod for the case above: [ Ссылка ]
COME SAY HELLO:
▷ Instagram: [ Ссылка ]
▷ Twitter: [ Ссылка ]
*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.
#VideoEditing #DaVinciResolve #VideoEditingTutorial
FREE SCRIPT (you need to replace REPLACE_ME_WITH_LEFT_ANGLE_BRACKET with a "less than" angle bracket because YT does not allow angle brackets in descriptions) License: 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.
IMPORTANT: Make sure your timeline has a STARTING TIMECODE of 00:00:00:00 or the script will not work
manager = resolve:GetProjectManager()
project = manager:GetCurrentProject()
timeline = project:GetCurrentTimeline()
markers = timeline:GetMarkers()
mf = {}
for frame, marker in pairs(markers) do
table.insert(mf, {frame, marker['name']})
end
table.insert(mf, {timeline:GetEndFrame(), "end"})
table.sort(mf, function (k1, k2) return k1[1] REPLACE_ME_WITH_LEFT_ANGLE_BRACKET k2[1] end)
for i = 1, #mf-1 do
startFrame = mf[i][1]
endFrame = mf[i+1][1]
isLastMarker = i == #mf-1
if not isLastMarker then endFrame = endFrame-1 end
fileName = string.format("%02d-", i) .. mf[i][2]
project:SetRenderSettings({
["SelectAllFrames"] = false,
["MarkIn"] = startFrame,
["MarkOut"] = endFrame,
["CustomName"] = fileName
})
print(string.format("Adding render job %s '%s' start frame %s end frame %s",i, fileName, startFrame, endFrame))
project:AddRenderJob()
end
Ещё видео!