DSDIFF¶
DSDIFF audio stream information and tags.
-
class
mutagen.dsdiff.
DSDIFF
(filething)¶ Bases:
mutagen.FileType
An DSDIFF audio file.
For tagging ID3v2 data is added to a chunk with the ID “ID3 “.
- Parameters
filething (filething) –
- Type
-
info
¶ - Type
Add empty ID3 tags to the file.
-
static
score
(filename, fileobj, header)¶ Returns a score for how likely the file can be parsed by this type.
- Parameters
- Returns
- negative if definitely not a matching type, otherwise a score,
the bigger the more certain that the file can be loaded.
- Return type
int
-
class
mutagen.dsdiff.
DSDIFFInfo
(fileobj)¶ DSDIFF stream information.
-
channels
¶ number of audio channels
- Type
int
-
length
¶ file length in seconds, as a float
- Type
float
-
sample_rate
¶ audio sampling rate in Hz
- Type
int
-
bits_per_sample
¶ audio sample size (for DSD this is always 1)
- Type
int
-
bitrate
¶ audio bitrate, in bits per second
- Type
int
-
compression
¶ DSD (uncompressed) or DST
- Type
str
-
pprint
()¶ Returns: text: Print stream information
-