ffthumb 313 B

123456
  1. #!/bin/sh
  2. duration="$(ffprobe -i "$@" -show_format 2>/dev/null|sed -En 's/duration=(.*)/\1/p')"
  3. t="$(printf "%s/2\n" $duration | bc -l)"
  4. ffmpeg -ss "$t" -i "$@" -vf select="eq(pict_type\,I)",scale=640:360 -vframes 1 -f singlejpeg - | chafa --fill=block -c 256 --symbols=block -s 80x${HEIGHT} - &&
  5. mediainfo "$1"