Dear Rust community.
What is a suggested create for playing videofiles in a Rust program.
To my understanding there isn't a media crate made specifically for Rust. I've reseach myself to lib-vlc is an option, but also when I'm on Mac?
Can anyone inform me about the situation regarding rust and playing video-files. Is there upcomming project, or finished crates that I should know about?
I don't know any such crates personally, but lib.rs has a multimedia category you might want to sift through and see if there's a crate that suits your needs:
Hi @kornel. Thanks for you input.
I want to create a program were the user can choose between 3 videos, repeating in loop (to begin with).
Here's a link to a video explainer (in danish) of my program (I want to rewrite with Rust): https://www.youtube.com/watch?v=px4PlQgWI2I
I've added simple comment in the description below the video.
Do you still judge gstreamer beeing the best option for that?
Thanks for you advice.
Hey.
I have decided to go with Tauri. I need to use a UI framework for the application development. I know there are many different (React, Angular, Vue.js ect.). Any recommendations? -It's my first web app.
React/Next.js is arguably the most widely used/sought-after JS framework right now. Svelte/SvelteKit is pretty well liked but less widely adopted. That being said, you can write your frontend in Rust as well, i.e. with a framework like yew.
Thanks for the answer.
I'm tempted to use yew, to stay in Rust. My only concern is how well you can code the UI graphics. Any thoughts on that.
Otherwise I'll use Svelte.
I'm not proficient with either, but I'd say when only considering how easy it is to develop UI components, I'd say yew is about as easy to use as "vanilla" React without any component libraries. I think if you combine yew with a CSS framework like tailwind, setting up a nice looking UI should be no problem.