all repos — dotfiles @ 316c6ff2bad827f872128280ddb59967b73a7cfd

linux dotfiles

bin/scripts/poster_extract

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