Skip to content
Merged
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
15 changes: 7 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,25 @@ The builds are provided for several platforms:
Features
--------

Currently FFmpeg 7.1.1 is built with the following packages enabled for all platforms:
Currently FFmpeg 8.0 is built with the following packages enabled for all platforms:

- gmp 6.3.0
- aom 3.11.0
- dav1d 1.4.1
- dav1d 1.5.1
- libsvtav1 3.1.0
- lame 3.100
- ogg 1.3.5
- opencore-amr 0.1.5
- openh264 2.6.0
- opus 1.5.2
- speex 1.2.1
- svt-av1 3.0.1
- srt 1.5.4 (encryption disabled on macOS)
- twolame 0.4.0
- vorbis 1.3.7
- vpx 1.15.1
- png 1.6.47
- webp 1.5.0
- x264 master
- x265 3.5
- openh264 2.6.0
- opencore-amr 0.1.5
- x264 32c3b801191522961102d4bea292cdb61068d0dd
- x265 4.1

The following additional packages are also enabled on Linux:

Expand Down
10 changes: 2 additions & 8 deletions scripts/sbom.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,11 @@ def main():
f"Currently FFmpeg {get_version(ffmpeg_package)} is built with the following packages enabled for all platforms:\n"
)

allow_gpl = True

for package in sorted(library_group):
if not package.gpl or allow_gpl:
print(f"- {package.name} {get_version(package)}")
print(f"- {package.name} {get_version(package)}")

for package in codec_group:
if package.name == "x264" and not allow_gpl:
print(f"- {openh264.name} {get_version(openh264)}")
elif not package.gpl or allow_gpl:
print(f"- {package.name} {get_version(package)}")
print(f"- {package.name} {get_version(package)}")

print("\nThe following additional packages are also enabled on Linux:\n")
for package in sorted(gnutls_group):
Expand Down