Guidance on turning a low fps stream of jpegs into a video
Hi folks! I'm new to Membrane (about 3 hours in by now) and just looking for some pointers on where to go, so far I have a source receiving tcp packets from a 3d printer, and a filter parsing those into jpeg images. I'd essentially like to end up with a low fps video feed from these. Any pointers?
2 Replies
👋 the next step would be to decompress these JPEGs into YUV or RGB. I don't think there's a Membrane element that does it, but you can have a look at https://github.com/BinaryNoggin/elixir-turbojpeg/. Another way would be to wrap https://github.com/elixir-image/image
GitHub
GitHub - BinaryNoggin/elixir-turbojpeg: libjpeg-turbo bindings for ...
libjpeg-turbo bindings for Elixir. Contribute to BinaryNoggin/elixir-turbojpeg development by creating an account on GitHub.
GitHub
GitHub - elixir-image/image: Image processing for Elixir
Image processing for Elixir. Contribute to elixir-image/image development by creating an account on GitHub.
fffpwd