mirror of
https://github.com/iluvcapra/mfbatch.git
synced 2025-12-31 08:50:51 +00:00
Compare commits
20 Commits
v0.5.0
...
iluvcapra-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49055ef881 | ||
|
|
ecc93640c2 | ||
|
|
538da34a0c | ||
|
|
2d4ea5a8d8 | ||
|
|
532f67e3a8 | ||
|
|
4989832247 | ||
|
|
549f49da31 | ||
|
|
ba3b0dbf96 | ||
|
|
2c135d413e | ||
|
|
334fa56a2c | ||
|
|
66ac136270 | ||
|
|
aa64d5e183 | ||
|
|
6766e81b23 | ||
|
|
a2ce03a259 | ||
|
|
0ba40893df | ||
|
|
e2b93f5183 | ||
|
|
7015e80cf9 | ||
|
|
042f3116dd | ||
|
|
20518fa31c | ||
|
|
c4a2e380de |
2
.github/workflows/pylint.yml
vendored
2
.github/workflows/pylint.yml
vendored
@@ -7,7 +7,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
||||
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
|
||||
@@ -8,8 +8,9 @@ from subprocess import CalledProcessError, run
|
||||
import sys
|
||||
from argparse import ArgumentParser
|
||||
import shlex
|
||||
from typing import Callable
|
||||
from typing import Callable, List, Tuple
|
||||
import inspect
|
||||
from io import StringIO
|
||||
|
||||
from tqdm import tqdm
|
||||
|
||||
@@ -29,56 +30,83 @@ def execute_batch_list(batch_list_path: str, dry_run: bool, interactive: bool):
|
||||
parser.eval(line, line_no, interactive)
|
||||
|
||||
|
||||
def create_batch_list(command_file: str, recursive=True, sort_mode='path'):
|
||||
def sort_flac_files(file_list, mode):
|
||||
"Sort flac files"
|
||||
if mode == 'path':
|
||||
return sorted(file_list)
|
||||
if mode == 'mtime':
|
||||
return sorted(file_list, key=os.path.getmtime)
|
||||
if mode == 'ctime':
|
||||
return sorted(file_list, key=os.path.getctime)
|
||||
if mode == 'name':
|
||||
return sorted(file_list, key=os.path.basename)
|
||||
|
||||
return file_list
|
||||
|
||||
|
||||
def write_batchfile_entries_for_file(path, metadatums) -> Tuple[dict, str]:
|
||||
"Create batchfile entries for `path`"
|
||||
buffer = StringIO()
|
||||
|
||||
try:
|
||||
this_file_metadata = metadata_funcs.read_metadata(path)
|
||||
|
||||
except CalledProcessError as e:
|
||||
buffer.write(f"# !!! METAFLAC ERROR ({e.returncode}) while reading "
|
||||
f"metadata from the file {path}\n\n")
|
||||
return metadatums, buffer.getvalue()
|
||||
|
||||
for this_key, this_value in this_file_metadata.items():
|
||||
if this_key not in metadatums:
|
||||
buffer.write(f":set {this_key} "
|
||||
f"{shlex.quote(this_value)}\n")
|
||||
metadatums[this_key] = this_value
|
||||
else:
|
||||
if this_value != metadatums[this_key]:
|
||||
buffer.write(f":set {this_key} "
|
||||
f"{shlex.quote(this_value)}"
|
||||
"\n")
|
||||
metadatums[this_key] = this_value
|
||||
|
||||
keys = list(metadatums.keys())
|
||||
for key in keys:
|
||||
if key not in this_file_metadata:
|
||||
buffer.write(f":unset {key}\n")
|
||||
del metadatums[key]
|
||||
|
||||
buffer.write(path + "\n\n")
|
||||
|
||||
return metadatums, buffer.getvalue()
|
||||
|
||||
|
||||
def create_batch_list(flac_files: List[str], command_file: str,
|
||||
sort_mode='path'):
|
||||
"""
|
||||
Read all FLAC files in the cwd and create a batchfile that re-creates all
|
||||
of their metadata.
|
||||
|
||||
:param recursive: Recursively enter directories
|
||||
:param flac_files: Paths of files to create batchfile from
|
||||
:param command_file: Name of new batchfile
|
||||
:param sort_mode: Order of paths in the batch list. Either 'path',
|
||||
'mtime', 'ctime', 'name'
|
||||
:param input_files: FLAC files to scan
|
||||
"""
|
||||
|
||||
flac_files = sort_flac_files(flac_files, sort_mode)
|
||||
|
||||
with open(command_file, mode='w', encoding='utf-8') as f:
|
||||
f.write("# mfbatch\n\n")
|
||||
metadatums = {}
|
||||
flac_files = glob('./**/*.flac', recursive=recursive)
|
||||
|
||||
if sort_mode == 'path':
|
||||
flac_files = sorted(flac_files)
|
||||
elif sort_mode == 'mtime':
|
||||
flac_files = sorted(flac_files, key=os.path.getmtime)
|
||||
elif sort_mode == 'ctime':
|
||||
flac_files = sorted(flac_files, key=os.path.getctime)
|
||||
elif sort_mode == 'name':
|
||||
flac_files = sorted(flac_files, key=os.path.basename)
|
||||
f.write("# mfbatch\n\n")
|
||||
|
||||
for path in tqdm(flac_files, unit='File', desc='Scanning FLAC files'):
|
||||
try:
|
||||
this_file_metadata = metadata_funcs.read_metadata(path)
|
||||
except CalledProcessError as e:
|
||||
f.write(f"# !!! METAFLAC ERROR ({e.returncode}) while reading "
|
||||
f"metadata from the file {path}\n\n")
|
||||
continue
|
||||
for path in tqdm(flac_files, unit='File',
|
||||
desc='Scanning with metaflac...'):
|
||||
|
||||
for this_key, this_value in this_file_metadata.items():
|
||||
if this_key not in metadatums:
|
||||
f.write(f":set {this_key} "
|
||||
f"{shlex.quote(this_value)}\n")
|
||||
metadatums[this_key] = this_value
|
||||
else:
|
||||
if this_value != metadatums[this_key]:
|
||||
f.write(f":set {this_key} "
|
||||
f"{shlex.quote(this_value)}"
|
||||
"\n")
|
||||
metadatums[this_key] = this_value
|
||||
metadatums, buffer = write_batchfile_entries_for_file(path,
|
||||
metadatums)
|
||||
f.write(buffer)
|
||||
|
||||
keys = list(metadatums.keys())
|
||||
for key in keys:
|
||||
if key not in this_file_metadata:
|
||||
f.write(f":unset {key}\n")
|
||||
del metadatums[key]
|
||||
|
||||
f.write(path + "\n\n")
|
||||
f.write("# mfbatch: create batchlist operation complete\n")
|
||||
|
||||
|
||||
def main():
|
||||
@@ -91,6 +119,10 @@ def main():
|
||||
op.add_argument('-c', '--create', default=False,
|
||||
action='store_true',
|
||||
help='create a new list')
|
||||
op.add_argument('-F', '--from-file', metavar='FILE_LIST', action='store',
|
||||
default=None, help="get file paths from FILE_LIST when "
|
||||
"creating, instead of scanning directory"
|
||||
"a new list")
|
||||
op.add_argument('-e', '--edit', action='store_true',
|
||||
help="open batch file in the default editor",
|
||||
default=False)
|
||||
@@ -123,7 +155,7 @@ def main():
|
||||
if options.help_commands:
|
||||
print("Command Help\n------------")
|
||||
commands = [command for command in dir(BatchfileParser) if
|
||||
not command.startswith('_') or command != "eval"]
|
||||
not command.startswith('_') and command != "eval"]
|
||||
print(f"{inspect.cleandoc(BatchfileParser.__doc__ or '')}\n\n")
|
||||
for command in commands:
|
||||
meth = getattr(BatchfileParser, command)
|
||||
@@ -138,7 +170,18 @@ def main():
|
||||
|
||||
if options.create:
|
||||
mode_given = True
|
||||
create_batch_list(options.batchfile, sort_mode=options.sort)
|
||||
flac_files: List[str] = []
|
||||
|
||||
if options.from_file:
|
||||
with open(options.from_file, mode='r',
|
||||
encoding='utf-8') as from_file:
|
||||
flac_files = [line.strip() for line in from_file.readlines()]
|
||||
else:
|
||||
flac_files = glob('./**/*.flac', recursive=True)
|
||||
|
||||
# print(flac_files)
|
||||
create_batch_list(flac_files, options.batchfile,
|
||||
sort_mode=options.sort)
|
||||
|
||||
if options.edit:
|
||||
mode_given = True
|
||||
|
||||
@@ -131,9 +131,9 @@ class CommandEnv:
|
||||
"""
|
||||
Increment all increment keys.
|
||||
"""
|
||||
for k, v in self.incr.items():
|
||||
v = int(v)
|
||||
self.metadatums[k] = self.incr[k] % (v + 1)
|
||||
for k, _ in self.incr.items():
|
||||
val = int(self.metadatums[k])
|
||||
self.metadatums[k] = self.incr[k] % (val + 1)
|
||||
|
||||
|
||||
class BatchfileParser:
|
||||
@@ -329,3 +329,18 @@ they appear in the batchfile.
|
||||
"""
|
||||
val = args[0]
|
||||
self.env.set_once('DESCRIPTION', val)
|
||||
|
||||
# def picture(self, args):
|
||||
# """
|
||||
# picture PATH
|
||||
# Add PATH as a picture (flac picture type 0) to this and every
|
||||
# subsequent file.
|
||||
# """
|
||||
# pass
|
||||
#
|
||||
# def nopicture(self, args):
|
||||
# """
|
||||
# unpicture
|
||||
# Remove all p
|
||||
# """
|
||||
# pass
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "mfbatch"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
description = "MetaFlac batch editor"
|
||||
authors = ["Jamie Hardt <jamiehardt@me.com>"]
|
||||
readme = "README.md"
|
||||
@@ -13,6 +13,7 @@ classifiers = [
|
||||
'Environment :: Console',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Topic :: Multimedia :: Sound/Audio :: Editors',
|
||||
'Programming Language :: Python :: 3.13',
|
||||
'Programming Language :: Python :: 3.12',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
|
||||
Reference in New Issue
Block a user