-
I'm trying to get a little more detail from on audio track codecs and see that I would need to reference the format_additionalfeatures attribute to do all my checks. With a DTS:X audio track, the MediaInfo CLI and GUI (most output formats) would show Is there anyway to have format return these values via pymediainfo, or is checking format_additionalfeatures the only way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, With full output, the "Format" attribute is repeated, e.g. from the CLI:
With pymediainfo, info for repeated keys can be found under
You can use If you prefer a shorter output, you can just pass
|
Beta Was this translation helpful? Give feedback.
Hi,
pymediainfo defaults to full output, similarly to
mediainfo -f
.With full output, the "Format" attribute is repeated, e.g. from the CLI:
With pymediainfo, info for repeated keys can be found under
other_format
:You can use
to_data
to dump all attributes from your track.If you prefer a shorter output, you can just pass
full=False
toparse
but you'll see less info this way: