My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
254 B

  1. #!/usr/bin/env sh
  2. # Description: Show media information of a file in pager
  3. #
  4. # Requires: mediainfo
  5. #
  6. # Shell: POSIX compliant
  7. # Author: Arun Prakash Jana
  8. if ! [ -z "$1" ] && [ -f "$1" ]; then
  9. mediainfo "$1" | $PAGER
  10. # exiftool "$1" | $PAGER
  11. fi