惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
腾讯CDC
博客园 - 司徒正美
A
About on SuperTechFans
H
Help Net Security
J
Java Code Geeks
C
Check Point Blog
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
MyScale Blog
MyScale Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
博客园 - 【当耐特】
雷峰网
雷峰网

The Rust Programming Language Forum - Latest topics

Beginner building a Rust backend framework (AI-assisted) — feedback appreciated C++ to Rust -- Exceptions Re-exporting a trait with a custom derive_macro Gold linker is deprecated Why is using PhantomData valid in this case? Code review for Static Pool Allocator Looking for a pool based allocator Why is this legal? What does it mean for Rustc to run "out of TLS keys"? Using async/await internally with no internal runtime, but exposing a nonblocking poll API — is this a reasonable design? Testing functions that use randomness `cargo-path`: improve coding agents&#39; ability to find Rust documentation Rust task runners Lifetime weird case Windows - USB device not detected A random rustc-ice-[...].txt file appeared Develop rust where the environment is setup in a docker Undefined Behavior: in-bounds pointer arithmetic failed: attempting to offset pointer by 20 bytes, but got alloc238 which is only 1 byte from the end of the allocation Unbug 0.5 - Runtime debug assertions Is there a tiny error in section 6.2 Reference types? Lifetime woes implementing ratatui::Widget for a reference Rusqlite + Chrono: How do I simplify code to obtain chrono datetime value From OOP to Rust – struggling with code organization and data structure design Way to avoid a self-referential struct Rust RF and audio resources/communities Whyhttp - HTTP mocks that fail where the bug actually is Using tokio channel permits in a tower service Arc::increment_strong_count design question (cross-post) `&T`, `&mut T`, `Pin<&mut T>` and `&Cell<T>`: Ways of Borrowing a `T` Ratatui detect arrow key press and release
LoMux: Adobe Media Encoder Alternative (First Rust Project)
2026-04-14 · via The Rust Programming Language Forum - Latest topics

1

Built LoMux to replace Adobe's Media Encoder
Originally built in python/tkinter and recently oxidized (3mb as opposed to 50mb). I'm sure there's issues in architecture I am missing. It's essentially, at least I think, a pretty damn clean ffmpeg GUI that does everything Adobe's Media Encoder does at a fraction of the hdd space and ram, is portable, and is independent of an expensive suite.

Repo: https://github.com/zblauser/LoMux

Does/Has

  • Batch video/audio conversion
  • Yt downloading (together with conversion)
  • Metadata editor (per file or batched)
  • Presets intended to mostly match Adobe's standard options with a few caveats.

Looking to add to the list of possible conversions, as ffmpeg is basically limitless.

It works, ships, I currently use it. I would like some feedback if possible and looking for contributors if you're interested?

Few Questions

  1. Architecture - Could this be structured cleaner, afa handling the ffmpeg subprocess and UI communication in rust?

  2. Async - In handling long ffmpeg processes, and not freezing, do you think i've got it correct here? It does work, but in terms of optimization.

  3. What is the idiomatic for bubbling ffmpeg failures to the UI? It should be known, ffmpeg sends its logging and error messages to stderr, not stdout.

  4. Crate choices alright? dependences all solid?

General critique is welcome, not looking to mogged lol, it's my first real rust project.

1 Like