On Mon, Jan 16, 2006 at 10:08:01PM +0100, Alexander Morgenstern wrote:
Kann mir jemand ganz schnell sagen wie (genau) ich aus einem Bildstapel von tif-Bildern ein mpeg-video oder ähnliches mache?
hm, im einfachsten Fall vielleicht...
# convert *.tiff output.m2v
dafür braucht man anscheinend mpeg2encode, war bei mir nicht da :( Oder vielleicht mit transcode (und imagemagick)...
# ls *.tiff > tiffs.txt # tcprobe -i `head -n 1 tiffs.txt` # verrät dir ein paar # Parameter für transcode # transcode -y mov --use_rgb -x imlist,null -i tiffs.txt -g 432x288 -o test.mov
Natürlich kann transcoded auch alle möglichen Formate, vorausgesetzt sie sind installiert.
Vielleicht hilft dir das weiter?
Marcus