mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
258897b649
+ fix favorites endpoint returning items less than limit + add endpoint to remove get silence padding + add 'the ulitimate' and 'compilation' to compilation album filters + misc
15 lines
374 B
Python
15 lines
374 B
Python
"""
|
|
|
|
"""
|
|
import logging
|
|
|
|
converter_logger = logging.getLogger("pydub.converter")
|
|
|
|
def log_conversion(conversion_command):
|
|
converter_logger.debug("subprocess.call(%s)", repr(conversion_command))
|
|
|
|
def log_subprocess_output(output):
|
|
if output:
|
|
for line in output.rstrip().splitlines():
|
|
converter_logger.debug('subprocess output: %s', line.rstrip())
|