24 lines
813 B
Bash
Executable file
24 lines
813 B
Bash
Executable file
#!/bin/bash
|
|
VIDEO="$1"
|
|
START="$2"
|
|
DURATION="$3"
|
|
|
|
|
|
|
|
ffmpeg -ss $START -i $VIDEO -t $DURATION -vf scale=640:-1 -vcodec h264 -an -strict -2 $VIDEO.mp4
|
|
|
|
# encodage video vp9
|
|
ffmpeg -ss $START -i $VIDEO -t $DURATION -vf scale=640:-1 -vcodec libvpx-vp9 -b:v 1M -an $VIDEO.webm
|
|
|
|
# commande conseillé par Google
|
|
#ffmpeg -i <source> -c:v libvpx-vp9 -pass 1 -b:v 1000K -threads 1 -speed 4 \
|
|
# -tile-columns 0 -frame-parallel 0 -auto-alt-ref 1 -lag-in-frames 25 \
|
|
# -g 9999 -aq-mode 0 -an -f webm /dev/null
|
|
|
|
|
|
#ffmpeg -i <source> -c:v libvpx-vp9 -pass 2 -b:v 1000K -threads 1 -speed 0 \
|
|
# -tile-columns 0 -frame-parallel 0 -auto-alt-ref 1 -lag-in-frames 25 \
|
|
# -g 9999 -aq-mode 0 -c:a libopus -b:a 64k -f webm out.webm
|
|
|
|
# créer une image à un temps t
|
|
ffmpeg -i $VIDEO -ss $START -vf scale=640:-1 -vframes 1 $VIDEO.png
|