Skip to content

Commit

Permalink
Update build-ffmpeg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeSchiff authored Jan 3, 2025
1 parent d2c2642 commit 9d4e334
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/build-ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@
name="srt",
source_url="https://github.com/Haivision/srt/archive/refs/tags/v1.5.4.tar.gz",
build_system="cmake",
build_arguments=[r"-DOPENSSL_ROOT_DIR=C:\Program Files\OpenSSL"] if plat == "Windows" else [""],
build_arguments = (
[r"-DOPENSSL_ROOT_DIR=C:\Program Files\OpenSSL"] if plat == "Windows"
else ["-DENABLE_ENCRYPTION=OFF"] if plat == "Darwin"
else [""]
),
]

Expand Down

0 comments on commit 9d4e334

Please sign in to comment.