14.4 C
New York
Saturday, April 5, 2025

ios – FFmpeg Arthenica at all times encodes with x265 Main10 profile


I am utilizing FFmpeg-Package (Arthenica) for iOS to compress movies utilizing the libx265 encoder. I am constructing FFmpeg with a customized configuration script:

export CUSTOM_CONFIG="--disable-indevs 
  --disable-outdevs 
  --disable-hwaccels 
  --enable-videotoolbox 
  --disable-protocols 
  --enable-protocol=file,fd,saf,async 
  --disable-decoders 
  --enable-decoder=${ENABLE_DECODER_LIST} 
  --disable-encoders 
  --enable-encoder=${ENABLE_ENCODER_LIST}"

export CUSTOM_CONFIG_IOS=${CUSTOM_CONFIG}
  ./ios.sh --enable-ios-videotoolbox --enable-lame --enable-libaom  --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-opencore-amr --enable-openh264 --enable-opus --enable-twolame --enable-x264 --enable-x265 --enable-gpl

Then I run FFmpeg with the next instructions:

-y -hide_banner -i enter.MOV -vcodec libx265 -x265-params profile=most important output.mov
-y -hide_banner -i enter.MOV -vcodec libx265 -x265-params profile=main10 output.mov

Nonetheless, whatever the profile I set, the output at all times finally ends up being encoded with the Main10 profile.

Right here’s the log output:

x265 [info]: HEVC encoder model 3.4
x265 [info]: construct information [Mac OS X][clang 16.0.0][32 bit][noasm] 10bit
x265 [info]: utilizing cpu capabilities: none!
x265 [info]: Important 10 profile, Stage-5 (Important tier)

Evidently the FFmpeg construct solely helps 10-bit encoding. I would like to have the ability to encode with totally different profiles (most important, main10, and so on.), in addition to to construct libx265 in a manner that helps 8-bit + 10-bit + 12-bit encoding (unified 64-bit construct), as like as the identical command executes for MacOS.

x265 [info]: HEVC encoder model 4.1+1-1d117be
x265 [info]: construct information [Mac OS X][clang 16.0.0][64 bit] 8bit+10bit+12bit
x265 [info]: utilizing cpu capabilities: NEON Neon_DotProd Neon_I8MM
x265 [info]: Important profile, Stage-2.1 (Important tier)

How can I appropriately configure and construct FFmpeg and libx265 with Cellular FFmpeg to help a number of bit depths and permit setting totally different profiles through -x265-params?

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles