Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions ffmpeg-src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
You can use the scripts in this repository to build [FFmpeg](https://ffmpeg.org/).
For detailed instructions on how to use `FFmpeg`, please visit the [official documentation](https://ffmpeg.org/documentation.html).

## Dependencies

On Ubuntu run following commands before running `./build.sh`:
Comment thread
razvand marked this conversation as resolved.

```
sudo apt install nasm
sudo apt install pkg-config
```

## Building

Run the `./build.sh` script.
Expand Down
5 changes: 3 additions & 2 deletions ffmpeg-src/build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/bin/bash

# Clean up.
# Clean up
rm -fr ffmpeg* app-ffmpeg
Comment thread
razvand marked this conversation as resolved.

git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
git clone --depth 1 --branch n6.0 https://git.ffmpeg.org/ffmpeg.git ffmpeg


echo "Configuring ffmpeg..."
pushd ffmpeg &> /dev/null || exit 1
Expand Down