Am Sonntag 07 März 2010 10:35:58 schrieb Georg Martius:
> On Sunday 07 March 2010, Al Bogner wrote:
> > How do I convert 2 separate files (m2v + mp2) to 1 ffv1 avi-file?
> >
> > Al
>
> Hi Al,
>
> I don't want to be impolite, but did you look at the man-page..
> -p file
> read audio stream from separate file [off].
> and then you need obviously to specify the input encoders with -x as usual.
Thanks Georg,
sometimes the manpage is too complex for me and so I ask after testing a while
and searching the web. I thought I have a syntax error, but it was another
problem. When I changed -x ffmpeg to -x mplayer it worked. It looks like m2v
doesn't work with ffmpeg.
This worked then:
transcode -i "$VIDEOFILE" -p "$AUDIOFILE" -x mplayer \
-J smartdeinter \
-N 0x1 -y ffmpeg,tcaud -F ffv1 \
-j 80,16,80,28 -Z 1024x576\
-J
unsharp=luma=0.5:luma_matrix=5x5:chroma=0.2:chroma_matrix=5x5 \
-o "$CROPPEDFILE"
Al