I am merging two movie libraries and am looking to "de-duplicate" manually via bash scripting.
Here is my thought process so far:
- Find all files with same name regardless of extension
- Delete smaller file (I have storage for days! and prefer quality!)
I could build on this, so if I can somehow make the delete part separate, I can build on it. My though being I could use ffmpeg to inspect the video and pick the better one, but I'm guessing bigger size = best option and simpler to code.
I posted of Software Rec but didn't get what I wanted so I realized bash is my best bet, but my "find" knowledge is limited and most of the answers I am finding are way to complicated, I figure this should be a simple thing.