Hallo

I hope I understood the question correct. 

> >> So the approach I end up using is to first translate the MJPEG to a
> >> YUV stream, transform these to PNMs, then transform the PNMs to JPEGs:
> >>
> >> bash% lav2yuv +n MVI_1704.AVI | y4mtoppm | pnmsplit - image%d.pnm
> >
> > Is there a quick way to get these pnm's into jpg format again that are
> > actually viewable?
> >
> > AnY good way to batCh process this on the CLI besides a for loop and
> > ppntojpeg?

I would use convert this way:
for i in *.pnm; do convert $i `basename $i pnm`jpg; done 

convert can do the conversation to nearly every picture format.

auf hoffentlich bald,

Berni the Chaos of Woodquarter

Email: [EMAIL PROTECTED]
www: http://www.lysator.liu.se/~gz/bernhard


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Mjpeg-users mailing list
Mjpeg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to