Sugestion: Keep filters and filters setting(video, audio) on next video.

Started by Fox_25, May 07, 2022, 08:46:35 PM

Previous topic - Next topic

Fox_25

Hello,
i cutting many videos with same video filter(sharpness) and audio normalization, but if i close saved video(CTRL+W), filters with setting is gone. This is ok if i make up to 5 videos, but if making on 10 or more, is frustrating(and lose time) turning on same filters and set same setting again and again.

Is any way to add function ,,keep filters and his setting", or turn on filters as default?

szlldm

you can create a python script (check lastEdit.py for ideas) then copy/move it into the custom folder
the most simple solution is, copy lasEdit py into custom folder, rename it, then delete the following lines:

if not adm.loadVideo("..."):
    raise("Cannot load ...")
adm.clearSegments()
adm.addSegment(0, 1, 2)
adm.markerA = 0
adm.markerB = 2

Then you can use it by clicking on it in the Custom menu.

Fox_25

Many thanks, you saved me a lot of time! I tried earlier make custom script, but it didn't work, this is really easy peasy.

Once again, Thanks!

datatracer

Quote from: szlldm on May 07, 2022, 09:03:41 PMyou can create a python script (check lastEdit.py for ideas) then copy/move it into the custom folder
the most simple solution is, copy lasEdit py into custom folder, rename it, then delete the following lines:

if not adm.loadVideo("..."):
    raise("Cannot load ...")
adm.clearSegments()
adm.addSegment(0, 1, 2)
adm.markerA = 0
adm.markerB = 2

Then you can use it by clicking on it in the Custom menu.

Awesome! This saves a lot of time, Thanks!