video

bash script using ffmpeg for making archos compatible mpeg4 with mp3

Here is the script I use now to convert stuff to a decent format for my Archos 705:

#!/bin/bash
 
INPUT=$1
 
ffmpeg \
-ab 128 \
-acodec mp3 \
-sameq \
-vcodec mpeg4 \
-mbd rd \
-flags +4mv+trell+aic \
-cmp 2 \
-subcmp 2 \
-g 300 \
-s 400x300 \
-aspect 4:3 \
-i "$INPUT" \
"$INPUT.lofi.avi"
 
#END

Mencoder AVI to FLV Conversion

Here is what I am using so far:


#!/bin/sh

mencoder -forceidx \
-lavfopts i_certify_that_my_video_stream_does_not_use_b_frames \
-of lavf -ffourcc FLV1 \
-oac mp3lame -lameopts abr:br=56 -srate 22050 \
-ovc lavc \
-lavcopts vcodec=flv:vbitrate=250:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 \
-vf scale=360:240 \
-o $1.flv $1

UPDATE (07-05-2008):

Syndicate content