Hi,

0n 07/06/[EMAIL PROTECTED]:20 Alex Samad told me:

> > I guess your only option would be, if you want to use transcode, -x
> > mplayer,mplayer. But that requires mplayer.
> > 
> mplayer handles the sound, but crashes on the video :)
> 
> same problem with mencoder.
> 
> But I am guessing I could use mencoder to pull out the audio and transcode to 
> manage the video, then how to put it all together ?

avimerge 

I have a canon ixus, which records a rubbish close to yours (input
is 15 fps mjpeg). I use this script to convert the stuff to 25fps
mpeg4:

---cut ixus21mpeg4.sh---
#!/bin/bash

transcode -i $1 -x auto,null -o /tmp/video_noSound.avi -F mpeg4 \
          -y ffmpeg,null - export_fps 25,3 -f 15,13 -J modfps

mplayer $1 -ao pcm:file=/tmp/sound.wav -vc dummy -vo null

sox /tmp/sound.wav -r 44100 /tmp/sound_44100.wav

lame /tmp/sound_44100.wav /tmp/sound.mp3

avimerge -o ./video.avi -i /tmp/video_noSound.avi -p /tmp/sound.mp3

rm /tmp/video_noSound.avi /tmp/sound.wav /tmp/sound_44100.wav \
   /tmp/sound.mp3
---cut---

HTH

-- 
bye maik

Attachment: signature.asc
Description: Digital signature

Reply via email to