Re: m2v+mp2 -> FFv1-avi
Al Bogner <[email protected]> Sun, 7 Mar 2010 13:44:03 +0100
| Newsgroups | gmane.comp.video.transcode.user |
|---|---|
| Message-ID | <[email protected]> |
Am Sonntag 07 M=E4rz 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 >=20 > Hi Al, >=20 > 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 us= ual. Thanks Georg, sometimes the manpage is too complex for me and so I ask after testing a = while=20 and searching the web. I thought I have a syntax error, but it was anothe= r=20 problem. When I changed -x ffmpeg to -x mplayer it worked. It looks like = m2v=20 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=3Dluma=3D0.5:luma_matrix=3D5x5:chroma=3D0.2:chroma_matrix=3D= 5x5 \ -o "$CROPPEDFILE" Al