Dudes of 708's knowledge base for getting started and tools we use
Back to homepage • software resources guide
We use ffmpeg
to preprocess our videos. Jump to Windows, macOS, or Linux.
C:\ffmpeg
. Take note of this directory for later.Edit the system environment variables
. Select the option that appears.\bin
appended to the end of the original folder name you created. So if you unzipped it to C:\ffmpeg
, add C:\ffmpeg\bin
.Then head to preprocessing.
You’ll need a package manager, like Homebrew.
Now run:
brew install ffmpeg
Then head to preprocessing.
Linux users should be able to figure it out, the package is called ffmpeg
in most major distributions. But if you really need a guide…
Then head to preprocessing.
If you have the apt
package manager, simply run:
sudo apt install ffmpeg -y
If you have the pacman
package manager, simply run:
sudo pacman -S ffmpeg
If you have RPM, simply run:
sudo dnf install ffmpeg
Open a command window. Let’s pretend your footage is named video.mkv
. However, I want a compressed MP4 file. Here’s how to do that:
Navigate to the folder in your command window. In all operating systems, you can navigate down one folder by typing cd <folder>
and navigate up one folder by typing cd ..
.
Now run:
ffmpeg -i video.mkv video.mp4
And send the corresponding video file over Google Drive.