# Find and list
find -maxdepth 1 -size +1M -print0 | nnn
# or
# redirect a list from a file:
nnn < files.txt
# to show video files in current director (adjust maxdepth if needed), run: list video
list ()
{
find . -maxdepth 1 | file -if- | grep "$1" | awk -F: '{printf "%s%c", $1, 0}' | nnn
}