Add files via upload
This commit is contained in:
parent
e2d9c9c37a
commit
db4a0b0b72
3 changed files with 21 additions and 0 deletions
7
video2gameconsole43.sh
Normal file
7
video2gameconsole43.sh
Normal 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
7
video2phone18.sh
Normal 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
7
video2phone24.sh
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue