|
From: Robert W. F. <mic...@co...> - 2004-01-08 18:12:44
|
Very clever.
I found something like this works fine:
sed -e "1s/Ip A0/I\? A0/" <edited.yuv | mpeg2enc ...
Rather than using a global edit, I told it only to change the first line
("1s"). According to my tests, sed seems to respect line numbers for
edits. Limiting sed to the first line seems safer than doing a global
edit. I would hope it would be more efficient too, but who knows what
evils lurk in the heart of sed.
Hans van der Made wrote:
>>I can see that using sed would be quite simple. However, I don't want
>>to wait for a 30 GB file to be re-written. Looking at the man page, I
>>
>>
>
>I never work with these large files, but rather use pipes (|) of fifo's.
>Putting an extra pipe in between is no problem then.
>
>Regards,
>
>Hans
>
>
>
>-------------------------------------------------------
>This SF.net email is sponsored by: Perforce Software.
>Perforce is the Fast Software Configuration Management System offering
>advanced branching capabilities and atomic changes on 50+ platforms.
>Free Eval! http://www.perforce.com/perforce/loadprog.html
>_______________________________________________
>Mjpeg-users mailing list
>Mjp...@li...
>https://lists.sourceforge.net/lists/listinfo/mjpeg-users
>
>
>
|