Make a Professional Subscribe Button in DaVinci Resolve Fusion | Preset Create #1

Поділитися
Вставка
  • Опубліковано 27 чер 2024
  • This tutorial will show you how to design a professional subscribe button in DaVinci Resolve Fusion. This is the first video in our series where we'll create various assets to build a custom, professional-looking macro (Davinci Resolve Preset/Template). Perfect for enhancing their videos with polished, engaging subscribe buttons.
    Get the current file: github.com/FusionPixelStudio/...
    -----------------------------------------------------------------------------------------------------------------------------------
    My Website: bit.ly/AR-Web
    Join the Discord: / discord
    -----------------------------------------------------------------------------------------------------------------------------------
    More Quick Fusion Tutorials: • Fusion 5 Minutes or Le...
    Watch The Post Video Stream: • Chill Livestreams
    -----------------------------------------------------------------------------------------------------------------------------------
    My Ko-Fi Shop: bit.ly/AR-KoFi
    My Website Shop: bit.ly/AR-Web-Shop
    -----------------------------------------------------------------------------------------------------------------------------------
    Check out my Projects for UA-camrs: • Tools I've Made for Yo...
    #DaVinciResolve #Fusion #SubscribeButton #VideoEditing #PresetCreate
  • Навчання та стиль

КОМЕНТАРІ • 17

  • @jozef_s
    @jozef_s 7 днів тому +2

    Great detailed video! Thank you.

  • @pixelrancher
    @pixelrancher 7 днів тому +1

    Great tutorial. Thanks.

  • @Hi-HK
    @Hi-HK 7 днів тому +1

    ♥️♥️

  • @SleevelessMTG
    @SleevelessMTG 7 днів тому +1

    Let’s go!!

  • @PeeJ_ENT
    @PeeJ_ENT 7 днів тому +1

    Now I can have people subscribe to my channel finally ty

  • @CarVinciResolve
    @CarVinciResolve День тому +1

    I love the videos that you do. I create Macros for effects for caredits and you Videos are helping a lot! Thank you
    Just a question, How can I make a button that copies a value from another macro and automatically inserts the value into the current macro.
    Like jake wipp did in this Video: ua-cam.com/video/BR_Wio6OiEk/v-deo.htmlfeature=shared&t=397

    • @asherroland
      @asherroland  День тому +1

      Thanks for the kind words! 😊
      This is exactly what Jake uses for his Presets:
      local pivotName = 'WippPivot'
      local zoomName = 'WippZoom'
      local prevClip = nil
      function findClipFusionNode(clip,nodeName)
      local fufu = clip:GetFusionCompByIndex(1)
      if(fufu ~= nil) then
      local tlist = fufu:GetToolList(false)
      for o = 0,#tlist do
      local comp = tlist[o]
      if(comp ~= nil) then
      local name = comp:GetAttrs()['TOOLS_Name']
      if(name == nodeName) then
      return comp
      end
      end
      end
      end
      return nil
      end
      function findClipByComp(tnode)
      prevClip=nil
      local projectManager = resolve:GetProjectManager()
      local project = projectManager:GetCurrentProject()
      local ctimeline=project:GetCurrentTimeline()
      tc=ctimeline:GetTrackCount('video')
      for x=1,tc do
      local items=ctimeline:GetItemListInTrack('video',x)
      for i=1,#items do
      local tclip=items[i]
      local node=findClipFusionNode(tclip,pivotName)
      if(node==tnode) then
      return tclip
      end
      prevClip=tclip
      end
      end
      return nil
      end
      print('MATCHING')
      local tclip=findClipByComp(WippPivot)
      if(tclip~=nil and prevClip~=nil) then
      local start=tclip:GetStart()
      local prevEnd=prevClip:GetEnd()
      if(start==prevEnd) then
      local prevNode=findClipFusionNode(prevClip,zoomName)
      if(prevNode==nil) then
      prevNode=findClipFusionNode(prevClip,pivotName)
      end
      if(prevNode~=nil) then
      local value1=prevNode.InputSize[0]
      local value2=prevNode.InputPivot[0]
      WippPivot.InputSize=value1
      WippPivot.Input2=value2
      if(prevNode==findClipFusionNode(prevClip,pivotName)) then
      local value3=prevNode.InputHLabel3[0]
      local value4=prevNode.InputeSize[0]
      if(value3==1) then
      WippPivot.InputSize=value4
      end
      end
      print("MATCH SUCCESSFUL!")
      end
      else
      print('PREV CLIP NOT FOUND')
      end
      end

    • @asherroland
      @asherroland  День тому +1

      I have not used the copying code for anything *yet* so I haven't had a chance to play with it to learn it yet haha

    • @CarVinciResolve
      @CarVinciResolve 21 годину тому +1

      @@asherroland okay thanks

    • @CarVinciResolve
      @CarVinciResolve 21 годину тому +1

      @@asherroland omg I love u thanks so much for that

  • @Man_gos
    @Man_gos 7 днів тому +1

    try to make it short

    • @asherroland
      @asherroland  7 днів тому +1

      The video?

    • @Man_gos
      @Man_gos 7 днів тому

      @@asherroland yes

    • @asherroland
      @asherroland  7 днів тому +5

      Gotta explain it for the beginners dog. If you want you can put it on double speed

    • @Man_gos
      @Man_gos 7 днів тому

      @@asherroland Okay

    • @ewob52h74
      @ewob52h74 7 днів тому +2

      @@asherroland I'm a noob. I appreciate the detail very much. TY