nnn/plugins/mediainf

14 lines
254 B
Plaintext
Raw Normal View History

2019-08-27 18:30:52 +00:00
#!/usr/bin/env sh
# Description: Show media information of a file in pager
#
# Requires: mediainfo
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
if ! [ -z "$1" ] && [ -f "$1" ]; then
mediainfo "$1" | $PAGER
# exiftool "$1" | $PAGER
fi