Add files via upload

This commit is contained in:
fdd4s 2024-10-11 10:20:18 +02:00 committed by GitHub
commit db4a0b0b72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 0 deletions

7
video2gameconsole43.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
name="${1%.*}"
ffmpeg -i "$1" -vf "scale=-2:272, crop=480:272" -r 14 -pix_fmt yuv420p -c:v libx264 -profile:v baseline -level 1 -c:a aac -b:a 160k "$name"-p.mp4
echo "$name"-p.mp4 created

7
video2phone18.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
name="${1%.*}"
ffmpeg -i "$1" -vf "scale=-2:144,crop=176:144" -q:v 1 -r 14 -ar 44100 -ac 2 -c:a aac -b:a 320k "$name"-p.3gp
echo "$name"-p.3gp created

7
video2phone24.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
name="${1%.*}"
ffmpeg -i "$1" -vf "scale=-2:288,crop=352:288" -q:v 1 -r 14 -ar 44100 -ac 2 -c:a aac -b:a 320k "$name"-p.3gp
echo "$name"-p.3gp created