forked from FFmpeg/FFmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reviewed-by: llogan Signed-off-by: Michael Niedermayer <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#Installing FFmpeg: | ||
|
||
1. Type `./configure` to create the configuration. A list of configure | ||
options is printed by running `configure --help`. | ||
|
||
`configure` can be launched from a directory different from the FFmpeg | ||
sources to build the objects out of tree. To do this, use an absolute | ||
path when launching `configure`, e.g. `/ffmpegdir/ffmpeg/configure`. | ||
|
||
2. Then type `make` to build FFmpeg. GNU Make 3.81 or later is required. | ||
|
||
3. Type `make install` to install all binaries and libraries you built. | ||
|
||
NOTICE | ||
------ | ||
|
||
- Non system dependencies (e.g. libx264, libvpx) are disabled by default. |