mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 11:42:28 +00:00
22 lines
483 B
Plaintext
22 lines
483 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mediainfo
|
|
|
|
> Display metadata from video and audio files.
|
|
> More information: <https://mediaarea.net/MediaInfo>.
|
|
|
|
- Display metadata for a given file in the console:
|
|
|
|
`mediainfo {{file}}`
|
|
|
|
- Store the output to a given file along with displaying in the console:
|
|
|
|
`mediainfo --Logfile={{out.txt}} {{file}}`
|
|
|
|
- List metadata attributes that can be extracted:
|
|
|
|
`mediainfo --Info-Parameters`
|