HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

afinfo — Audio file metadata parser for OS X. Built-in command of OS X. More information: <https://keith.gith

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandmetadataclifileaudioparserforafinfo
macos

Problem

How to use the afinfo command: Audio file metadata parser for OS X. Built-in command of OS X. More information: <https://keith.github.io/xcode-man-pages/afinfo.1.html>.

Solution

afinfo — Audio file metadata parser for OS X. Built-in command of OS X. More information: <https://keith.github.io/xcode-man-pages/afinfo.1.html>.

Display info of a given audio file:
afinfo {{path/to/file}}


Print a one line description of the audio file:
afinfo --brief {{path/to/file}}


Print metadata info and contents of the audio file's InfoDictionary:
afinfo --info {{path/to/file}}


Print output in XML format:
afinfo --xml {{path/to/file}}


Print warnings for the audio file if any:
afinfo --warnings {{path/to/file}}


Display help:
afinfo --help

Code Snippets

Display info of a given audio file

afinfo {{path/to/file}}

Print a one line description of the audio file

afinfo --brief {{path/to/file}}

Print metadata info and contents of the audio file's InfoDictionary

afinfo --info {{path/to/file}}

Print output in XML format

afinfo --xml {{path/to/file}}

Print warnings for the audio file if any

afinfo --warnings {{path/to/file}}

Context

tldr-pages: osx/afinfo

Revisions (0)

No revisions yet.