music_album_creation.ffmpeg.ffprobe.ffprobe   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A FFProbe.__init__() 0 2 1
1
from .ffprobe_proxy import FFProbeProxy
2
from .ffprobe_subject import FFProbeSubject
3
4
__all__ = ['FFProbeProxy']
5
6
7
# Proxy that proxies a Singleton ffprobe instance
8
class FFProbe(FFProbeProxy):
9
    def __init__(self, ffprobe_binary: str):
10
        super().__init__(FFProbeSubject(ffprobe_binary))
11