* Marko Cebokli on Thursday, February 26, 2009 at 21:01:46 +0100
> I am trying to transcode yuv4mpeg into DV - the idea is to use y4mstabilizer 
> to stabilize some clips before editing in Kino.
> I would like to avoid an intermediate high-compression (inter-frame) format.
> 
> So far I had little success....
> Mencoder and ffmpeg can output yuv4mpeg, but won't eat it.

... | ffmpeg -f yuv4mpegpipe -i -

but ffmpeg probably guesses right without specifying -f for
input.

<snip>

> I use yuvdeinterlace and y4mscaler to 444 before stabilizing, and y4mscaler 
> to 
> 420_MPEG2 after it, feeding the result to transcode.
> If I watch the stream before trancode with yuvplay, it is perfectly OK.

Something like

... | yuvdeinterlace \
    | y4mscaler -v 0 -O sar=src -O chromass=444 \
    | y4mstabilizer \
    | y4mscaler -v 0 -O sar=src -O chromass=420_MPEG2 \
    | ffmpeg -i - -target pal-dv -y test.dv

might get you going.

> Maybe someone on the list has encountered this problem and solved it?
> Do I need to "reinterlace",

I don't know.

> and how to do it?

I don't know.

c
-- 
\black\trash movie    _C O W B O Y_  _C A N O E_  _C O M A_
Ein deutscher Western/A German Western
-->> http://www.blacktrash.org/underdogma/ccc.html
-->> http://www.blacktrash.org/underdogma/ccc-en.html

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Mjpeg-users mailing list
Mjpeg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to