all repos — dotfiles @ ce55dc4cbf1f46ab89198931a541808316d232d6

linux dotfiles

bin/scripts/poster_extract (view raw)

 1
 2
 3
 4
 5
#!/bin/sh
# this script extracts any jpeg imgae file from a media file like mp4,mkv,etc
# the first argument given to the script should be the name of the media file.
std=$(ffprobe -loglevel error -show_entries stream=index,codec_name -of csv "$1" | awk -F ',' '/jpeg/ {print $2}')
ffmpeg -loglevel quiet -i "$1" -map 0:"$std" "$1".jpeg