4c0d3r
4c0d3r
@Darklyter can we come up with a definition of what the plugins matching algo must be? I would have to re-implement it in namer to complete this item. Just seeing...
Maybe doable with ffmpeg: ``` import ffmpeg from pathlib import Path def metadata(file: Path, res_file: Path): data = { 'metadata:g:0': "title=My Title", 'metadata:g:1': "artist=Me", 'metadata:g:2': "album=X", 'metadata:g:3': "year=2019", } stream...
This will have to work differently. Namer needs another regex parser for movie formats.... parse as scene first, if that fails parse as movie (name - year.ext) -- ignore matching...
The matching may work if "name - year.ext" searching were a thing. Glad 170 eases your current needs, but if namer ever supports movies fully I'd want to do it...
Fixed in: https://github.com/peolic/videohashes/pull/6
I install ffmpeg even if the command isn't fully provided args to allow namer to leverage video hashes to install ffmpeg as well.
This has shipped with namer for a while. All Amd64 oses are tested in namer's GitHub actions build. Arm64 likely been tested by someone by now, arm linux, couldn't say.....