Installing ffmpeg in repl.it
Mr. Developer
Posted on October 17, 2022
You can download i686
of ffmpeg
compressed file from this link.
After downloading it, extract it, then upload the ffmpeg
file inside to your repl.it project.
You can also use the below
shell
approach to download and unzipffmpeg
binaries on your repl.Firstly download
ffmpeg
binaries usingwget
.wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-i686-static.tar.xz
And then extract the archive.
tar -xf ffmpeg-release-i686-static.tar.xz
And then allow the files to read & write files on the server.
chmod +777 ./ffmpeg-release-i686-static
And that's all, now you are ready to go.
Try using
ffmpeg [command]
into the shell.
💖 💪 🙅 🚩
Mr. Developer
Posted on October 17, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.