Have the FFmpeg CLI Be able to use FFmpeg functions in Rust Have no duplicate code Precompile it for all platforms Be lightweight By running the above instructions on a macOS Apple Silicon machine, ...
I wanted a Rust function that trims a string up to and including the first instance of a specified character. So fn remove_through_first_char("word1 word2 word3", ' ') would return "word2 word3". If ...