Server just do post processing of raw rgb image/frame and return it as response for request.Something like so: POST http://localhost:8080
--- Original message --- From: "Edward Park" <[email protected]> Date: 8 September 2020, 02:19:21 Hi, > ffmpeg -i test.jpg -vf format=rgb24,http=localhost:8080 -y out.jpg I don't think it's possible using filters, or with a single invocation like that. (The 'http' filter is hypothetical and just meant for illustration right?) Depending on how you're connected to the server, I think pipes or sockets would be a better place to start. And also separate commands for outputting frames for the server to consume, and another that takes the returned images. Regards, Ted Park _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
