-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 E Chalaron schrieb: > nobody really ????? :-(
>> I'd like to improve it... however my skills at mixing pipes is not >> that great. I tried (without success) the following Hi, just some questions to help you get ahead... I don't have any reference man for x264 at hand, but is the "-o" option really specifying the input stream? then, next: what exactly do you want to achieve. Draw a little schema picture. Compare the original script with your script. Is the following correct? (note, I am just guessing, I don't have the time to investigate the problem in detail, but I want to get you on track): original script: stdin -> stream.y4m -> x264 -> stdout what is the intention of your script? maybe this: stdin -> stream2.y4m -> yuvdenoise -> y4mshift -> stream.y4m -> x264 ->stdout Next question: what is the reason why you want to use fifos? Doesn't x264 provide an option to act as filter directly, cant it just read input and pipe to output? Finally: if you want to build up complicated pipes with fifos, you need to observe the order and have a clear concept how the pipe is assumed to be connected together. Just observe what the original script does: 1) connect the x264's input to the pipe *and* put this compound in the background (note the ampersand at the end!). There it will sit and wait until some data appears in the fifo. 2) a short delay to allow the compound just started to get ready 3) start piping the stdin of the script into the fifo. Note this command is *not* put into the background, it will block as long as the script as a whole recieves input. Now, try to transfer this observations in a systematic manner on your situation. hope that helps Cheers, Hermann V. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkq04QgACgkQZbZrB6HelLKwmACgiIceqQkwNRpN6o9NpZ/arXOM kUcAoKERwlKro1VliIIbGm4GOsKvq9ZQ =LJ4Y -----END PGP SIGNATURE----- _______________________________________________ Cinelerra mailing list [email protected] https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
