How do you upgrade ffmpeg?
I received an error relating claiming that my ffmpeg was out of date for a specific command. How do I get the newest version on Replit?
How do you upgrade ffmpeg?
I received an error relating claiming that my ffmpeg was out of date for a specific command. How do I get the newest version on Replit?
Hello, here is what you can do:
Show hidden files and open replit.nix
, then remove all packages from deps
.
Then, add those back using poetry add <package>
command in shell.
If that doesn’t work, then revert those changes and use a different ffmpeg
package in replit.nix
, see NixOS Search
since you aren’t talking about a Python package but a binary, instead simply change the nix.channel
in .replit
to unstable
. If you need the absolute latest version, you might be able to create a bash script in the .config/bashrc
file which fetches the compiled package from some online source.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.