Une petite contribution même si elle n'est pas bien libre (la finalité pas la solution) ... je m'en excuse pour les nombreux puristes qui pourraient me faire la réflexion à juste titre d'ailleurs.
#!/bin/bash
#conversion vers le format iphone
echo "--- scripte de conversion vers video iphone ---"
echo "_____________________________________________________"
for i in *
do
name=`echo $i | sed s/".avi"//`
mencoder "$name".avi -o "$name".mp4 -vf scale=480:-10,harddup -lavfopts i_cert ify_that_my_video_stream_does_not_use_b_frames:format=mp4 -faacopts mpeg=4:obje ct=2:raw:br=128 -oac faac -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bf rames=0:global_header:threads=auto:subq=5:frameref=6:partitions=all:trellis=1:c hroma_me:me=umh:bitrate=300 -of lavf
echo "_____________________________________________________"
echo "_____________________________________________________"
du *
echo "_____________________________________________________"
done
# simplification rapide
Posté par NeoX . Évalué à 1.
#!/bin/bash
#conversion vers le format iphone
echo "--- scripte de conversion vers video iphone ---"
echo "_____________________________________________________"
for i in *
do
name=`echo $i | sed s/".avi"//`
name=`basename $i .avi`
mencoder "$i -o "$name".mp4 -vf scale=480:-10,harddup -lavfopts i_cert ify_that_my_video_stream_does_not_use_b_frames:format=mp4 -faacopts mpeg=4:obje ct=2:raw:br=128 -oac faac -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bf rames=0:global_header:threads=auto:subq=5:frameref=6:partitions=all:trellis=1:c hroma_me:me=umh:bitrate=300 -of lavf
echo "_____________________________________________________"
echo "_____________________________________________________"
du *
echo "_____________________________________________________"
done
[^] # Re: simplification rapide
Posté par ✅ ffx . Évalué à 3.
name=${i%.avi}
# Avec ffmpeg
Posté par SiB (site web personnel) . Évalué à 1.
#!/bin/zsh
if [[ ! $# == 1 ]]; then
echo "Usage: $0 videofile"
exit
fi
OUT=${${1%.*}##*/}.mp4 #ne semble pas fonctionner avec bash, mais marche en le faisant en 2 fois...
LOG="/tmp/$OUT.txt"
width=480
height=320
vcodec=libx264
vbitrate=600k #1000k
acodec=libfaac
abitrate=128k
afreq=48000
flag1="-flags +loop -cmp +chroma -deblockalpha 0 -deblockbeta 0"
flag2="-maxrate 1250k -bufsize 4M -bt 256k -refs 1 -coder 0 -me umh -me_range 16 -subq 7 -partitions +parti4x4+parti8x8+partp8x8 -g 250 -keyint_min 25 -level 30 -qmin 10 -qmax 51 -qcomp 0.6 -trellis 2 -sc_threshold 40 -i_qfactor 0.71"
#pass1
ffmpeg -y -i "${1}" -r 29.97 -vcodec ${vcodec} -s ${width}x${height} -aspect 4:3 ${flag1} -b ${vbitrate} ${flag2} -acodec ${acodec} -ab ${abitrate} -ar ${afreq} -ac 2 -passlogfile "${LOG}" -pass 1 -threads auto "/tmp/${OUT}"
#pass2
ffmpeg -y -i "${1}" -r 29.97 -vcodec ${vcodec} -s ${width}x${height} -aspect 4:3 ${flag1} -b ${vbitrate} ${flag2} -acodec ${acodec} -ab ${abitrate} -ar ${afreq} -ac 2 -passlogfile "${LOG}" -pass 2 -threads auto "/tmp/${OUT}"
mv "/tmp/${OUT}" /mon/iphone/en/sshfs
#remove log
rm "${LOG}"
la qualité produite me convient amplement, même pour l'affichage sur ma grande tv crt via l'iphone mais ça reste un poil long à transcoder.
toute suggestion d'amélioration (filtre inutile ou autre) est la bienvenue ;)
Suivre le flux des commentaires
Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.