Skip to content

Commit

Permalink
Change ffmpeg options
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanSavenko committed Aug 17, 2024
1 parent 52dc62e commit cf233a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ def configure(self):
# H3:HD - ogg container / theora video / vorbis sound
# and for mods - webm container / vp9 video / opus sound
self.options["ffmpeg"].enable_protocols = "file"
self.options["ffmpeg"].enable_demuxers = "bink,binka,ogg,smacker,webm_dash_manifest"
self.options["ffmpeg"].enable_parsers = "opus,ogg,vorbis,vp9,webp"
self.options["ffmpeg"].enable_decoders = "bink,binkaudio_dct,binkaudio_rdft,smackaud,smacker,theora,vorbis,vp9,opus"
# self.options["ffmpeg"].enable_demuxers = "bink,binka,ogg,smacker,webm_dash_manifest"
# self.options["ffmpeg"].enable_parsers = "opus,vorbis,vp9,webp"
# self.options["ffmpeg"].enable_decoders = "bink,binkaudio_dct,binkaudio_rdft,smackaud,smacker,theora,vorbis,vp9,opus"

self.options["ffmpeg"].with_programs = False
self.options["ffmpeg"].avfilter = False
self.options["ffmpeg"].swresample = False #Note: we might want to enable this option to allow audio resampling
self.options["ffmpeg"].swresample = True
self.options["ffmpeg"].with_sdl = False

#optionally, for testing - enable ffplay/ffprobe binaries in conan package:
Expand Down

0 comments on commit cf233a4

Please sign in to comment.