DEV Community

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

Posted on

4

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.

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay