DEV Community

Cover image for Installing ffmpeg in repl.it
Mr. Developer
Mr. Developer

Posted on

Installing ffmpeg in repl.it

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 unzip ffmpeg binaries on your repl.

Firstly download ffmpeg binaries using wget.

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
Enter fullscreen mode Exit fullscreen mode

And that's all, now you are ready to go.

Try using

ffmpeg [command]
Enter fullscreen mode Exit fullscreen mode

into the shell.

Oldest comments (0)