Last active
December 9, 2023 14:49
-
-
Save vedmalex/917fe39950ba27698ec92fcd7d25933e to your computer and use it in GitHub Desktop.
создать video по аудио книге
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Ищем картинку title.webp/jpg и конвертируем ее в jpg разрешения 320x240 | |
| # for file in title.jpg; do | |
| # if [ -f "$file" ]; then | |
| # ffmpeg -i "$file" -vf scale=320:240 "${file%.*}.jpg" | |
| # fi | |
| # done | |
| # Создаем для каждого файла mp3 одноименный mp4 с помощью команды ffmpeg | |
| for file in *.mp3; do | |
| if [ -f "$file" ]; then | |
| ffmpeg -loop 1 -i title.jpg -i "$file" -c:v libx264 -tune stillimage -c:a copy -shortest -pix_fmt yuv420p "${file%.*}.mp4" | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment