You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's cool that these are matching by newest. That's definitely handy. But so far Proxima overwrites originals anyway. Currently this feature exists just to support Resolve's internally generated method which appends digits. In future, we can add support for incrementing files on collision.
What isn't working is the wildcard match. One of the source files is "Cockburn Drone.mov"
Since we're just checking the title starts with "Cockburn Drone" it also matches:
"Cockburn Drone - ARC - STBLSD.mov"
"Cockburn Drone - End Shots - Stabilised.mov"
If they all exist in the same source folder, they'll be candidates for "Cockburn Drone.mov". This doesn't work in reverse though since "Cockburn Drone" doesn't contain "Cockburn Drone - ARC - STBLSD".
Solution
We could filter linkable matches with regex in user config. Then we could have Resolve's _S000 suffix pattern as a default option as well as maybe - 1 or _1 with varying whitespaces out of the box. Regex would be easiest since it's so flexible and we can make it faster by only running the regex match on initial matches that contain the original filename like we're already doing.
The text was updated successfully, but these errors were encountered:
Problem
It's cool that these are matching by newest. That's definitely handy. But so far Proxima overwrites originals anyway. Currently this feature exists just to support Resolve's internally generated method which appends digits. In future, we can add support for incrementing files on collision.
What isn't working is the wildcard match. One of the source files is "Cockburn Drone.mov"
Since we're just checking the title starts with "Cockburn Drone" it also matches:
If they all exist in the same source folder, they'll be candidates for "Cockburn Drone.mov". This doesn't work in reverse though since "Cockburn Drone" doesn't contain "Cockburn Drone - ARC - STBLSD".
Solution
We could filter linkable matches with regex in user config. Then we could have Resolve's
_S000
suffix pattern as a default option as well as maybe- 1
or_1
with varying whitespaces out of the box. Regex would be easiest since it's so flexible and we can make it faster by only running the regex match on initial matches that contain the original filename like we're already doing.The text was updated successfully, but these errors were encountered: