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...