mod. 18-04

This commit is contained in:
rob 2024-04-18 01:48:06 -04:00
parent 38e7b5d4ed
commit 1be2f4af1e

View file

@ -1,3 +1,7 @@
#!/bin/sh
# Descripción: convertidor video - thumbnail
# Dependencias: ffmpeg
# Author: rob // punk_coders
for f in *.mp4; do ffmpeg -loglevel quiet -i $f -vf "thumbnail,scale=640:360" -frames:v 1 $f.png; done