chore(analyzer): move ffmpeg and utils modules to pipeline

This commit is contained in:
jo 2022-02-14 17:27:58 +01:00 committed by Kyle Robbertze
parent 120f24b1a4
commit c6124b4012
5 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ from math import inf
import distro
import pytest
from libretime_analyzer.ffmpeg import (
from libretime_analyzer.pipeline._ffmpeg import (
_SILENCE_DETECT_RE,
compute_replaygain,
compute_silences,
@ -11,7 +11,7 @@ from libretime_analyzer.ffmpeg import (
probe_replaygain,
)
from .fixtures import FILES
from ..fixtures import FILES
@pytest.mark.skip(reason="fixtures files are missing replaygain metadata")