Want to subscribe to topics you're interested in?
Become a Member

FFmpeg update

Discussion in 'Install & Upgrades or Pre-Install Questions' started by Kuro, Dec 6, 2024.

Tags:
  1. Kuro

    Kuro Member

    109
    13
    18
    Feb 8, 2018
    Ratings:
    +25
    Local Time:
    6:13 AM
    1.15.10
    10.3
    • CentOS Version: AlmaLinux
    • Centmin Mod Version Installed: 140.00beta01.


      Hi, I installed FFmpeg from Centminmod using option 19, but after the installation, it turned out to be version 4.2, which is very old.
      cmd: ffmpeg
      upload_2024-12-6_8-40-55.png
     
    Last edited: Dec 6, 2024
  2. eva2000

    eva2000 Administrator Staff Member

    54,328
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    9:13 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Centmin Mod ffmpeg install uses Git master repo git.ffmpeg.org Git - ffmpeg.git/summary by default. Unless they don't have latest version in master repo?

    Also Centmin Mod centmin.sh menu option 19 ffmpge is installed at
    Code (Text):
    /opt/bin/ffmpeg -version
    

    where version number is = git-2024-12-06-018ec4f corresponding to commit git.ffmpeg.org Git - ffmpeg.git/shortlog located at git.ffmpeg.org Git - ffmpeg.git/commit
    Code (Text):
    /opt/bin/ffmpeg -version
    ffmpeg version git-2024-12-06-018ec4f Copyright (c) 2000-2024 the FFmpeg developers
    built with gcc 13 (GCC)
    configuration: --prefix=/opt/ffmpeg --extra-cflags=' -I/opt/ffmpeg/include' --extra-ldflags=-L/opt/ffmpeg/lib --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libass --enable-libzimg --enable-swscale --enable-shared
    libavutil      59. 49.100 / 59. 49.100
    libavcodec     61. 26.100 / 61. 26.100
    libavformat    61.  9.100 / 61.  9.100
    libavdevice    61.  4.100 / 61.  4.100
    libavfilter    10.  6.101 / 10.  6.101
    libswscale      8. 12.100 /  8. 12.100
    libswresample   5.  4.100 /  5.  4.100
    libpostproc    58.  4.100 / 58.  4.100
    
     
  3. Kuro

    Kuro Member

    109
    13
    18
    Feb 8, 2018
    Ratings:
    +25
    Local Time:
    6:13 AM
    1.15.10
    10.3
    Thank you for the helpful information. I have uninstalled the old FFmpeg (ffmpeg-static) and installed the Centmin Mod version of FFmpeg. However, I'm encountering a problem when encoding an AV1 video to h264, whereas I didn't have this issue with the previous FFmpeg version. It seems like this FFmpeg is missing the codec to decode AV1 videos.

    This is the command I was using before, and it worked fine:
    Code:
    -pix_fmt yuv420p -c:v libx264 -c:a aac -ac 2 -keyint_min 45 -g 45 -sc_threshold 0 -movflags +faststart -crf 22 -preset slow -tune animation -profile:v main
    And this is the error code I'm getting:
    Code:
    [av1 @ 0x1187180] Your platform doesn't support hardware accelerated AV1 decoding.
    [av1 @ 0x1187180] Failed to get pixel format.
    [av1 @ 0x1187180] Get current frame error
    [vist#0:0/av1 @ 0x10bde00] [dec:av1 @ 0x1186600] Error submitting packet to decoder: Function not implemented
    FFmpeg centminmod installed
    Code:
    ffmpeg version git-2025-01-02-dd5696c Copyright (c) 2000-2025 the FFmpeg developers
    built with gcc 13 (GCC)
    configuration: --prefix=/opt/ffmpeg --extra-cflags=' -I/opt/ffmpeg/include' --extra-ldflags=-L/opt/ffmpeg/lib --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libass --enable-libzimg --enable-swscale --enable-shared
    libavutil      59. 53.100 / 59. 53.100
    libavcodec     61. 28.100 / 61. 28.100
    libavformat    61.  9.102 / 61.  9.102
    libavdevice    61.  4.100 / 61.  4.100
    libavfilter    10.  6.101 / 10.  6.101
    libswscale      8. 13.100 /  8. 13.100
    libswresample   5.  4.100 /  5.  4.100
    libpostproc    58.  4.100 / 58.  4.100
    I searched on Google, and the suggestion is to install libaom to decode AV1 videos, but I don't know how to install it. The instructions I found are:
    Code:
    # Install libaom from source.
    mkdir -p ~/ffmpeg_sources/libaom && \
      cd ~/ffmpeg_sources/libaom && \
      git clone https://aomedia.googlesource.com/aom && \
      cmake ./aom && \
      make && \
      sudo make install
    Could you please help me? Thank you very much.
     
    Last edited: Jan 3, 2025
  4. eva2000

    eva2000 Administrator Staff Member

    54,328
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    9:13 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Are you using AlmaLinux EL8 or EL9?

    Yeah, AV1 isn't enabled by default to dependency hell, especially for older CentOS 7 at the time. I don't recall if AlmaLinux/Rocky Linux AV1 support was tested 100%, but you can try enabling its support via creating a persistent settings file at /etc/centminmod/ffmpeg_config.inc and adding to it
    Code (Text):
    ENABLE_AVONE='y'
    

    then re-run centmin.sh menu option 19 FFMPEG install to see if Centmin Mod build FFMPG gets AV1 support.

    I don't do AV1 encoding so not something I have dug into specifically. You can help me do real world tests for ffmpeg's AVI support I guess :)

    This is Centmin Mod 140.00beta01 ffmpeg install via centmin.sh menu option 19 with ENABLE_AVONE='y' enabled on AlmaLinux 9

    Code (Text):
    /opt/bin/ffmpeg -version
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
    built with gcc 13 (GCC)
    configuration: --prefix=/opt/ffmpeg --extra-cflags='-fPIC -I/opt/ffmpeg/include' --extra-ldflags='-L/opt/ffmpeg/lib -Wl,-Bsymbolic' --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libaom --enable-libass --enable-libzimg --enable-swscale --enable-pic --extra-ldexeflags=-pie --enable-shared
    libavutil      59. 53.100 / 59. 53.100
    libavcodec     61. 28.100 / 61. 28.100
    libavformat    61.  9.102 / 61.  9.102
    libavdevice    61.  4.100 / 61.  4.100
    libavfilter    10.  6.101 / 10.  6.101
    libswscale      8. 13.100 /  8. 13.100
    libswresample   5.  4.100 /  5.  4.100
    libpostproc    58.  4.100 / 58.  4.100
    


    On the surface does look like build ffmpeg does get AV1 support FFmpeg Codecs Documentation. Test and let me know :) If it does work, maybe for EL8/EL9 might enable AV1 by default for FFmpeg builds
    Code (Text):
    /opt/bin/ffmpeg -h encoder=libaom-av1
    
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
      built with gcc 13 (GCC)
      configuration: --prefix=/opt/ffmpeg --extra-cflags='-fPIC -I/opt/ffmpeg/include' --extra-ldflags='-L/opt/ffmpeg/lib -Wl,-Bsymbolic' --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libaom --enable-libass --enable-libzimg --enable-swscale --enable-pic --extra-ldexeflags=-pie --enable-shared
      libavutil      59. 53.100 / 59. 53.100
      libavcodec     61. 28.100 / 61. 28.100
      libavformat    61.  9.102 / 61.  9.102
      libavdevice    61.  4.100 / 61.  4.100
      libavfilter    10.  6.101 / 10.  6.101
      libswscale      8. 13.100 /  8. 13.100
      libswresample   5.  4.100 /  5.  4.100
      libpostproc    58.  4.100 / 58.  4.100
    Encoder libaom-av1 [libaom AV1]:
        General capabilities: dr1 delay threads
        Threading capabilities: other
        Supported pixel formats: yuv420p yuv422p yuv444p gbrp yuv420p10le yuv422p10le yuv444p10le yuv420p12le yuv422p12le yuv444p12le gbrp10le gbrp12le gray gray10le gray12le
    libaom-av1 encoder AVOptions:
      -cpu-used          <int>        E..V....... Quality/Speed ratio modifier (from 0 to 8) (default 1)
      -auto-alt-ref      <int>        E..V....... Enable use of alternate reference frames (2-pass only) (from -1 to 2) (default -1)
      -lag-in-frames     <int>        E..V....... Number of frames to look ahead at for alternate reference frame selection (from -1 to INT_MAX) (default -1)
      -arnr-max-frames   <int>        E..V....... altref noise reduction max frame count (from -1 to INT_MAX) (default -1)
      -arnr-strength     <int>        E..V....... altref noise reduction filter strength (from -1 to 6) (default -1)
      -aq-mode           <int>        E..V....... adaptive quantization mode (from -1 to 4) (default -1)
         none            0            E..V....... Aq not used
         variance        1            E..V....... Variance based Aq
         complexity      2            E..V....... Complexity based Aq
         cyclic          3            E..V....... Cyclic Refresh Aq
      -error-resilience  <flags>      E..V....... Error resilience configuration (default 0)
         default                      E..V....... Improve resiliency against losses of whole frames
      -crf               <int>        E..V....... Select the quality for constant quality mode (from -1 to 63) (default -1)
      -static-thresh     <int>        E..V....... A change threshold on blocks below which they will be skipped by the encoder (from 0 to INT_MAX) (default 0)
      -drop-threshold    <int>        E..V....... Frame drop threshold (from INT_MIN to INT_MAX) (default 0)
      -denoise-noise-level <int>        E..V....... Amount of noise to be removed (from -1 to INT_MAX) (default -1)
      -denoise-block-size <int>        E..V....... Denoise block size  (from -1 to INT_MAX) (default -1)
      -undershoot-pct    <int>        E..V....... Datarate undershoot (min) target (%) (from -1 to 100) (default -1)
      -overshoot-pct     <int>        E..V....... Datarate overshoot (max) target (%) (from -1 to 1000) (default -1)
      -minsection-pct    <int>        E..V....... GOP min bitrate (% of target) (from -1 to 100) (default -1)
      -maxsection-pct    <int>        E..V....... GOP max bitrate (% of target) (from -1 to 5000) (default -1)
      -frame-parallel    <boolean>    E..V....... Enable frame parallel decodability features (default auto)
      -tiles             <image_size> E..V....... Tile columns x rows
      -tile-columns      <int>        E..V....... Log2 of number of tile columns to use (from -1 to 6) (default -1)
      -tile-rows         <int>        E..V....... Log2 of number of tile rows to use (from -1 to 6) (default -1)
      -row-mt            <boolean>    E..V....... Enable row based multi-threading (default auto)
      -enable-cdef       <boolean>    E..V....... Enable CDEF filtering (default auto)
      -enable-global-motion <boolean>    E..V....... Enable global motion (default auto)
      -enable-intrabc    <boolean>    E..V....... Enable intra block copy prediction mode (default auto)
      -enable-restoration <boolean>    E..V....... Enable Loop Restoration filtering (default auto)
      -usage             <int>        E..V....... Quality and compression efficiency vs speed trade-off (from 0 to INT_MAX) (default good)
         good            0            E..V....... Good quality
         realtime        1            E..V....... Realtime encoding
         allintra        2            E..V....... All Intra encoding
      -tune              <int>        E..V....... The metric that the encoder tunes for. Automatically chosen by the encoder by default (from -1 to 1) (default -1)
         psnr            0            E..V.......
         ssim            1            E..V.......
      -still-picture     <boolean>    E..V....... Encode in single frame mode (typically used for still AVIF images). (default false)
      -dolbyvision       <boolean>    E..V....... Enable Dolby Vision RPU coding (default auto)
         auto                         E..V.......
      -enable-rect-partitions <boolean>    E..V....... Enable rectangular partitions (default auto)
      -enable-1to4-partitions <boolean>    E..V....... Enable 1:4/4:1 partitions (default auto)
      -enable-ab-partitions <boolean>    E..V....... Enable ab shape partitions (default auto)
      -enable-angle-delta <boolean>    E..V....... Enable angle delta intra prediction (default auto)
      -enable-cfl-intra  <boolean>    E..V....... Enable chroma predicted from luma intra prediction (default auto)
      -enable-filter-intra <boolean>    E..V....... Enable filter intra predictor (default auto)
      -enable-intra-edge-filter <boolean>    E..V....... Enable intra edge filter (default auto)
      -enable-smooth-intra <boolean>    E..V....... Enable smooth intra prediction mode (default auto)
      -enable-paeth-intra <boolean>    E..V....... Enable paeth predictor in intra prediction (default auto)
      -enable-palette    <boolean>    E..V....... Enable palette prediction mode (default auto)
      -enable-flip-idtx  <boolean>    E..V....... Enable extended transform type (default auto)
      -enable-tx64       <boolean>    E..V....... Enable 64-pt transform (default auto)
      -reduced-tx-type-set <boolean>    E..V....... Use reduced set of transform types (default auto)
      -use-intra-dct-only <boolean>    E..V....... Use DCT only for INTRA modes (default auto)
      -use-inter-dct-only <boolean>    E..V....... Use DCT only for INTER modes (default auto)
      -use-intra-default-tx-only <boolean>    E..V....... Use default-transform only for INTRA modes (default auto)
      -enable-ref-frame-mvs <boolean>    E..V....... Enable temporal mv prediction (default auto)
      -enable-reduced-reference-set <boolean>    E..V....... Use reduced set of single and compound references (default auto)
      -enable-obmc       <boolean>    E..V....... Enable obmc (default auto)
      -enable-dual-filter <boolean>    E..V....... Enable dual filter (default auto)
      -enable-diff-wtd-comp <boolean>    E..V....... Enable difference-weighted compound (default auto)
      -enable-dist-wtd-comp <boolean>    E..V....... Enable distance-weighted compound (default auto)
      -enable-onesided-comp <boolean>    E..V....... Enable one sided compound (default auto)
      -enable-interinter-wedge <boolean>    E..V....... Enable interinter wedge compound (default auto)
      -enable-interintra-wedge <boolean>    E..V....... Enable interintra wedge compound (default auto)
      -enable-masked-comp <boolean>    E..V....... Enable masked compound (default auto)
      -enable-interintra-comp <boolean>    E..V....... Enable interintra compound (default auto)
      -enable-smooth-interintra <boolean>    E..V....... Enable smooth interintra mode (default auto)
      -aom-params        <dictionary> E..V....... Set libaom options using a :-separated list of key=value pairs
    

    Code (Text):
    /opt/bin/ffmpeg -formats
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
      built with gcc 13 (GCC)
      configuration: --prefix=/opt/ffmpeg --extra-cflags='-fPIC -I/opt/ffmpeg/include' --extra-ldflags='-L/opt/ffmpeg/lib -Wl,-Bsymbolic' --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libaom --enable-libass --enable-libzimg --enable-swscale --enable-pic --extra-ldexeflags=-pie --enable-shared
      libavutil      59. 53.100 / 59. 53.100
      libavcodec     61. 28.100 / 61. 28.100
      libavformat    61.  9.102 / 61.  9.102
      libavdevice    61.  4.100 / 61.  4.100
      libavfilter    10.  6.101 / 10.  6.101
      libswscale      8. 13.100 /  8. 13.100
      libswresample   5.  4.100 /  5.  4.100
      libpostproc    58.  4.100 / 58.  4.100
    Formats:
     D.. = Demuxing supported
     .E. = Muxing supported
     ..d = Is a device
     ---
     D   3dostr          3DO STR
      E  3g2             3GP2 (3GPP2 file format)
      E  3gp             3GP (3GPP file format)
     D   4xm             4X Technologies
      E  a64             a64 - video for Commodore 64
     D   aa              Audible AA format files
     D   aac             raw ADTS AAC (Advanced Audio Coding)
     D   aax             CRI AAX
     DE  ac3             raw AC-3
     DE  ac4             raw AC-4
     D   ace             tri-Ace Audio Container
     D   acm             Interplay ACM
     D   act             ACT Voice file format
     D   adf             Artworx Data Format
     D   adp             ADP
     D   ads             Sony PS2 ADS
      E  adts            ADTS AAC (Advanced Audio Coding)
     DE  adx             CRI ADX
     DE  aea             MD STUDIO audio
     D   afc             AFC
     DE  aiff            Audio IFF
     D   aix             CRI AIX
     DE  alaw            PCM A-law
     D   alias_pix       Alias/Wavefront PIX image
     DE  alp             LEGO Racers ALP
     DE  amr             3GPP AMR
     D   amrnb           raw AMR-NB
     D   amrwb           raw AMR-WB
      E  amv             AMV
     D   anm             Deluxe Paint Animation
     D   apac            raw APAC
     D   apc             CRYO APC
     D   ape             Monkey's Audio
     DE  apm             Ubisoft Rayman 2 APM
     DE  apng            Animated Portable Network Graphics
     DE  aptx            raw aptX (Audio Processing Technology for Bluetooth)
     DE  aptx_hd         raw aptX HD (Audio Processing Technology for Bluetooth)
     D   aqtitle         AQTitle subtitles
     DE  argo_asf        Argonaut Games ASF
     D   argo_brp        Argonaut Games BRP
     DE  argo_cvg        Argonaut Games CVG
     DE  asf             ASF (Advanced / Active Streaming Format)
     D   asf_o           ASF (Advanced / Active Streaming Format)
      E  asf_stream      ASF (Advanced / Active Streaming Format)
     DE  ass             SSA (SubStation Alpha) subtitle
     DE  ast             AST (Audio Stream)
     DE  au              Sun AU
     D   av1             AV1 Annex B
     DE  avi             AVI (Audio Video Interleaved)
      E  avif            AVIF
      E  avm2            SWF (ShockWave Flash) (AVM2)
     D   avr             AVR (Audio Visual Research)
     D   avs             Argonaut Games Creature Shock
     DE  avs2            raw AVS2-P2/IEEE1857.4 video
     DE  avs3            AVS3-P2/IEEE1857.10
     D   bethsoftvid     Bethesda Softworks VID
     D   bfi             Brute Force & Ignorance
     D   bfstm           BFSTM (Binary Cafe Stream)
     D   bin             Binary text
     D   bink            Bink
     D   binka           Bink Audio
     DE  bit             G.729 BIT file format
     D   bitpacked       Bitpacked
     D   bmp_pipe        piped bmp sequence
     D   bmv             Discworld II BMV
     D   boa             Black Ops Audio
     D   bonk            raw Bonk
     D   brender_pix     BRender PIX image
     D   brstm           BRSTM (Binary Revolution Stream)
     D   c93             Interplay C93
     DE  caf             Apple CAF (Core Audio Format)
     DE  cavsvideo       raw Chinese AVS (Audio Video Standard) video
     D   cdg             CD Graphics
     D   cdxl            Commodore CDXL video
     D   cine            Phantom Cine
     DE  codec2          codec2 .c2 muxer
     DE  codec2raw       raw codec2 muxer
     D   concat          Virtual concatenation script
      E  crc             CRC testing
     D   cri_pipe        piped cri sequence
      E  dash            DASH Muxer
     DE  data            raw data
     DE  daud            D-Cinema audio
     D   dcstr           Sega DC STR
     D   dds_pipe        piped dds sequence
     D   derf            Xilam DERF
     D   dfa             Chronomaster DFA
     DE  dfpwm           raw DFPWM1a
     D   dhav            Video DAV
     DE  dirac           raw Dirac
     DE  dnxhd           raw DNxHD (SMPTE VC-3)
     D   dpx_pipe        piped dpx sequence
     D   dsf             DSD Stream File (DSF)
     D   dsicin          Delphine Software International CIN
     D   dss             Digital Speech Standard (DSS)
     DE  dts             raw DTS
     D   dtshd           raw DTS-HD
     DE  dv              DV (Digital Video)
     D   dvbsub          raw dvbsub
     D   dvbtxt          dvbtxt
      E  dvd             MPEG-2 PS (DVD VOB)
     D   dxa             DXA
     D   ea              Electronic Arts Multimedia
     D   ea_cdata        Electronic Arts cdata
     DE  eac3            raw E-AC-3
     D   epaf            Ensoniq Paris Audio File
     DE  evc             raw EVC video
     D   exr_pipe        piped exr sequence
     DE  f32be           PCM 32-bit floating-point big-endian
     DE  f32le           PCM 32-bit floating-point little-endian
      E  f4v             F4V Adobe Flash Video
     DE  f64be           PCM 64-bit floating-point big-endian
     DE  f64le           PCM 64-bit floating-point little-endian
     DEd fbdev           Linux framebuffer
     DE  ffmetadata      FFmpeg metadata in text
      E  fifo            FIFO queue pseudo-muxer
     DE  film_cpk        Sega FILM / CPK
     DE  filmstrip       Adobe Filmstrip
     DE  fits            Flexible Image Transport System
     DE  flac            raw FLAC
     D   flic            FLI/FLC/FLX animation
     DE  flv             FLV (Flash Video)
      E  framecrc        framecrc testing
      E  framehash       Per-frame hash testing
      E  framemd5        Per-frame MD5 testing
     D   frm             Megalux Frame
     D   fsb             FMOD Sample Bank
     D   fwse            Capcom's MT Framework sound
     DE  g722            raw G.722
     DE  g723_1          raw G.723.1
     DE  g726            raw big-endian G.726 ("left-justified")
     DE  g726le          raw little-endian G.726 ("right-justified")
     D   g729            G.729 raw format demuxer
     D   gdv             Gremlin Digital Video
     D   gem_pipe        piped gem sequence
     D   genh            GENeric Header
     DE  gif             CompuServe Graphics Interchange Format (GIF)
     D   gif_pipe        piped gif sequence
     DE  gsm             raw GSM
     DE  gxf             GXF (General eXchange Format)
     DE  h261            raw H.261
     DE  h263            raw H.263
     DE  h264            raw H.264 video
      E  hash            Hash testing
     D   hca             CRI HCA
     D   hcom            Macintosh HCOM
     D   hdr_pipe        piped hdr sequence
      E  hds             HDS Muxer
     DE  hevc            raw HEVC video
     DE  hls             Apple HTTP Live Streaming
     D   hnm             Cryo HNM v4
     DE  iamf            Raw Immersive Audio Model and Formats
     DE  ico             Microsoft Windows ICO
     D   idcin           id Cinematic
     D   idf             iCE Draw File
     D   iff             IFF (Interchange File Format)
     D   ifv             IFV CCTV DVR
     DE  ilbc            iLBC storage
     DE  image2          image2 sequence
     DE  image2pipe      piped image2 sequence
     D   ingenient       raw Ingenient MJPEG
     D   ipmovie         Interplay MVE
      E  ipod            iPod H.264 MP4 (MPEG-4 Part 14)
     D   ipu             raw IPU Video
     DE  ircam           Berkeley/IRCAM/CARL Sound Format
      E  ismv            ISMV/ISMA (Smooth Streaming)
     D   iss             Funcom ISS
     D   iv8             IndigoVision 8000 video
     DE  ivf             On2 IVF
     D   ivr             IVR (Internet Video Recording)
     D   j2k_pipe        piped j2k sequence
     DE  jacosub         JACOsub subtitle format
     D   jpeg_pipe       piped jpeg sequence
     D   jpegls_pipe     piped jpegls sequence
     D   jpegxl_anim     Animated JPEG XL
     D   jpegxl_pipe     piped jpegxl sequence
     D   jv              Bitmap Brothers JV
     D   kux             KUX (YouKu)
     DE  kvag            Simon & Schuster Interactive VAG
     D   laf             LAF (Limitless Audio Format)
      E  latm            LOAS/LATM
     D d lavfi           Libavfilter virtual input device
     DE  lc3             LC3 (Low Complexity Communication Codec)
     D   live_flv        live RTMP FLV (Flash Video)
     D   lmlm4           raw lmlm4
     D   loas            LOAS AudioSyncStream
     DE  lrc             LRC lyrics
     D   luodat          Video CCTV DAT
     D   lvf             LVF
     D   lxf             VR native stream (LXF)
     DE  m4v             raw MPEG-4 video
      E  matroska        Matroska
     D   matroska,webm   Matroska / WebM
     D   mca             MCA Audio Format
     D   mcc             MacCaption
      E  md5             MD5 testing
     D   mgsts           Metal Gear Solid: The Twin Snakes
     DE  microdvd        MicroDVD subtitle format
     DE  mjpeg           raw MJPEG video
     D   mjpeg_2000      raw MJPEG 2000 video
      E  mkvtimestamp_v2 extract pts as timecode v2 format, as defined by mkvtoolnix
     DE  mlp             raw MLP
     D   mlv             Magic Lantern Video (MLV)
     D   mm              American Laser Games MM
     DE  mmf             Yamaha SMAF
     D   mods            MobiClip MODS
     D   moflex          MobiClip MOFLEX
      E  mov             QuickTime / MOV
     D   mov,mp4,m4a,3gp,3g2,mj2 QuickTime / MOV
      E  mp2             MP2 (MPEG audio layer 2)
     DE  mp3             MP3 (MPEG audio layer 3)
      E  mp4             MP4 (MPEG-4 Part 14)
     D   mpc             Musepack
     D   mpc8            Musepack SV8
     DE  mpeg            MPEG-1 Systems / MPEG program stream
      E  mpeg1video      raw MPEG-1 video
      E  mpeg2video      raw MPEG-2 video
     DE  mpegts          MPEG-TS (MPEG-2 Transport Stream)
     D   mpegtsraw       raw MPEG-TS (MPEG-2 Transport Stream)
     D   mpegvideo       raw MPEG video
     DE  mpjpeg          MIME multipart JPEG
     D   mpl2            MPL2 subtitles
     D   mpsub           MPlayer subtitles
     D   msf             Sony PS3 MSF
     D   msnwctcp        MSN TCP Webcam stream
     D   msp             Microsoft Paint (MSP))
     D   mtaf            Konami PS2 MTAF
     D   mtv             MTV
     DE  mulaw           PCM mu-law
     D   musx            Eurocom MUSX
     D   mv              Silicon Graphics Movie
     D   mvi             Motion Pixels MVI
     DE  mxf             MXF (Material eXchange Format)
      E  mxf_d10         MXF (Material eXchange Format) D-10 Mapping
      E  mxf_opatom      MXF (Material eXchange Format) Operational Pattern Atom
     D   mxg             MxPEG clip
     D   nc              NC camera feed
     D   nistsphere      NIST SPeech HEader REsources
     D   nsp             Computerized Speech Lab NSP
     D   nsv             Nullsoft Streaming Video
      E  null            raw null video
     DE  nut             NUT
     D   nuv             NuppelVideo
     DE  obu             AV1 low overhead OBU
      E  oga             Ogg Audio
     DE  ogg             Ogg
      E  ogv             Ogg Video
     DE  oma             Sony OpenMG audio
      E  opus            Ogg Opus
     D   osq             raw OSQ
     DEd oss             OSS (Open Sound System) playback
     D   paf             Amazing Studio Packed Animation File
     D   pam_pipe        piped pam sequence
     D   pbm_pipe        piped pbm sequence
     D   pcx_pipe        piped pcx sequence
     D   pdv             PlayDate Video
     D   pfm_pipe        piped pfm sequence
     D   pgm_pipe        piped pgm sequence
     D   pgmyuv_pipe     piped pgmyuv sequence
     D   pgx_pipe        piped pgx sequence
     D   phm_pipe        piped phm sequence
     D   photocd_pipe    piped photocd sequence
     D   pictor_pipe     piped pictor sequence
     D   pjs             PJS (Phoenix Japanimation Society) subtitles
     D   pmp             Playstation Portable PMP
     D   png_pipe        piped png sequence
     D   pp_bnk          Pro Pinball Series Soundbank
     D   ppm_pipe        piped ppm sequence
     D   psd_pipe        piped psd sequence
      E  psp             PSP MP4 (MPEG-4 Part 14)
     D   psxstr          Sony Playstation STR
     D   pva             TechnoTrend PVA
     D   pvf             PVF (Portable Voice Format)
     D   qcp             QCP
     D   qdraw_pipe      piped qdraw sequence
     D   qoa             QOA
     D   qoi_pipe        piped qoi sequence
     D   r3d             REDCODE R3D
     DE  rawvideo        raw video
     DE  rcwt            RCWT (Raw Captions With Time)
     D   realtext        RealText subtitle format
     D   redspark        RedSpark
     D   rka             RKA (RK Audio)
     D   rl2             RL2
     DE  rm              RealMedia
     DE  roq             raw id RoQ
     D   rpl             RPL / ARMovie
     D   rsd             GameCube RSD
     DE  rso             Lego Mindstorms RSO
     DE  rtp             RTP output
      E  rtp_mpegts      RTP/mpegts output format
     DE  rtsp            RTSP output
     DE  s16be           PCM signed 16-bit big-endian
     DE  s16le           PCM signed 16-bit little-endian
     DE  s24be           PCM signed 24-bit big-endian
     DE  s24le           PCM signed 24-bit little-endian
     DE  s32be           PCM signed 32-bit big-endian
     DE  s32le           PCM signed 32-bit little-endian
     D   s337m           SMPTE 337M
     DE  s8              PCM signed 8-bit
     D   sami            SAMI subtitle format
     DE  sap             SAP output
     DE  sbc             raw SBC
     D   sbg             SBaGen binaural beats script
     DE  scc             Scenarist Closed Captions
     D   scd             Square Enix SCD
     D   sdns            Xbox SDNS
     D   sdp             SDP
     D   sdr2            SDR2
     D   sds             MIDI Sample Dump Standard
     D   sdx             Sample Dump eXchange
      E  segment         segment
     D   ser             SER (Simple uncompressed video format for astronomical capturing)
     D   sga             Digital Pictures SGA
     D   sgi_pipe        piped sgi sequence
     D   shn             raw Shorten
     D   siff            Beam Software SIFF
     D   simbiosis_imx   Simbiosis Interactive IMX
     D   sln             Asterisk raw pcm
     DE  smjpeg          Loki SDL MJPEG
     D   smk             Smacker
      E  smoothstreaming Smooth Streaming Muxer
     D   smush           LucasArts Smush
     D   sol             Sierra SOL
     DE  sox             SoX (Sound eXchange) native
     DE  spdif           IEC 61937 (used on S/PDIF - IEC958)
      E  spx             Ogg Speex
     DE  srt             SubRip subtitle
     D   stl             Spruce subtitle format
      E  stream_segment,ssegment streaming segment muxer
      E  streamhash      Per-stream hash testing
     D   subviewer       SubViewer subtitle format
     D   subviewer1      SubViewer v1 subtitle format
     D   sunrast_pipe    piped sunrast sequence
     DE  sup             raw HDMV Presentation Graphic Stream subtitles
     D   svag            Konami PS2 SVAG
      E  svcd            MPEG-2 PS (SVCD)
     D   svg_pipe        piped svg sequence
     D   svs             Square SVS
     DE  swf             SWF (ShockWave Flash)
     D   tak             raw TAK
     D   tedcaptions     TED Talks captions
      E  tee             Multiple muxer tee
     D   thp             THP
     D   tiertexseq      Tiertex Limited SEQ
     D   tiff_pipe       piped tiff sequence
     D   tmv             8088flex TMV
     DE  truehd          raw TrueHD
     DE  tta             TTA (True Audio)
      E  ttml            TTML subtitle
     D   tty             Tele-typewriter
     D   txd             Renderware TeXture Dictionary
     D   ty              TiVo TY Stream
     DE  u16be           PCM unsigned 16-bit big-endian
     DE  u16le           PCM unsigned 16-bit little-endian
     DE  u24be           PCM unsigned 24-bit big-endian
     DE  u24le           PCM unsigned 24-bit little-endian
     DE  u32be           PCM unsigned 32-bit big-endian
     DE  u32le           PCM unsigned 32-bit little-endian
     DE  u8              PCM unsigned 8-bit
      E  uncodedframecrc uncoded framecrc testing
     D   usm             CRI USM
     D   v210            Uncompressed 4:2:2 10-bit
     D   v210x           Uncompressed 4:2:2 10-bit
     D   vag             Sony PS2 VAG
     D   vbn_pipe        piped vbn sequence
     DE  vc1             raw VC-1 video
     DE  vc1test         VC-1 test bitstream
      E  vcd             MPEG-1 Systems / MPEG program stream (VCD)
     DE  vidc            PCM Archimedes VIDC
     DEd video4linux2,v4l2 Video4Linux2 output device
     D   vividas         Vividas VIV
     D   vivo            Vivo
     D   vmd             Sierra VMD
      E  vob             MPEG-2 PS (VOB)
     D   vobsub          VobSub subtitle format
     DE  voc             Creative Voice
     D   vpk             Sony PS2 VPK
     D   vplayer         VPlayer subtitles
     D   vqf             Nippon Telegraph and Telephone Corporation (NTT) TwinVQ
     DE  vvc             raw H.266/VVC video
     DE  w64             Sony Wave64
     D   wady            Marble WADY
     DE  wav             WAV / WAVE (Waveform Audio)
     D   wavarc          Waveform Archiver
     D   wc3movie        Wing Commander III movie
      E  webm            WebM
      E  webm_chunk      WebM Chunk Muxer
     DE  webm_dash_manifest WebM DASH Manifest
      E  webp            WebP
     D   webp_pipe       piped webp sequence
     DE  webvtt          WebVTT subtitle
     DE  wsaud           Westwood Studios audio
     D   wsd             Wideband Single-bit Data (WSD)
     D   wsvqa           Westwood Studios VQA
     DE  wtv             Windows Television (WTV)
     DE  wv              raw WavPack
     D   wve             Psion 3 audio
     D d x11grab         X11 screen capture, using XCB
     D   xa              Maxis XA
     D   xbin            eXtended BINary text (XBIN)
     D   xbm_pipe        piped xbm sequence
     D   xmd             Konami XMD
     D   xmv             Microsoft XMV
     D   xpm_pipe        piped xpm sequence
     D   xvag            Sony PS3 XVAG
     D   xwd_pipe        piped xwd sequence
     D   xwma            Microsoft xWMA
     D   yop             Psygnosis YOP
     DE  yuv4mpegpipe    YUV4MPEG pipe
    


    edit: did quick test

    Code (Text):
    yum -y install mediainfo
    wget https://test-videos.co.uk/vids/bigbuckbunny/mp4/h264/1080/Big_Buck_Bunny_1080_10s_5MB.mp4
    

    Code (Text):
    /opt/bin/ffmpeg -i Big_Buck_Bunny_1080_10s_5MB.mp4
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
      built with gcc 13 (GCC)
      configuration: --prefix=/opt/ffmpeg --extra-cflags='-fPIC -I/opt/ffmpeg/include' --extra-ldflags='-L/opt/ffmpeg/lib -Wl,-Bsymbolic' --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libaom --enable-libass --enable-libzimg --enable-swscale --enable-pic --extra-ldexeflags=-pie --enable-shared
      libavutil      59. 53.100 / 59. 53.100
      libavcodec     61. 28.100 / 61. 28.100
      libavformat    61.  9.102 / 61.  9.102
      libavdevice    61.  4.100 / 61.  4.100
      libavfilter    10.  6.101 / 10.  6.101
      libswscale      8. 13.100 /  8. 13.100
      libswresample   5.  4.100 /  5.  4.100
      libpostproc    58.  4.100 / 58.  4.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Big_Buck_Bunny_1080_10s_5MB.mp4':
      Metadata:
        major_brand     : isom
        minor_version   : 512
        compatible_brands: isomiso2avc1mp41
      Duration: 00:00:10.00, start: 0.000000, bitrate: 4190 kb/s
      Stream #0:0[0x1](und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], 4185 kb/s, 60 fps, 60 tbr, 15360 tbn (default)
        Metadata:
          handler_name    : VideoHandler
          vendor_id       : [0][0][0][0]
    At least one output file must be specified
    

    Code (Text):
    mediainfo Big_Buck_Bunny_1080_10s_5MB.mp4
    General
    Complete name                            : Big_Buck_Bunny_1080_10s_5MB.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media
    Codec ID                                 : isom (isom/iso2/avc1/mp41)
    File size                                : 5.00 MiB
    Duration                                 : 10 s 0 ms
    Overall bit rate                         : 4 191 kb/s
    Frame rate                               : 60.000 FPS
    
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : High@L4.2
    Format settings                          : CABAC / 4 Ref Frames
    Format settings, CABAC                   : Yes
    Format settings, Reference frames        : 4 frames
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 10 s 0 ms
    Bit rate                                 : 4 136 kb/s
    Maximum bit rate                         : 4 186 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 60.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.033
    Stream size                              : 4.99 MiB (100%)
    Writing library                          : x264 core 164 r3075 66a5bc1
    Encoding settings                        : cabac=1 / ref=4 / deblock=1:0:0 / analyse=0x3:0x133 / me=umh / subme=10 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=24 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=2 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=8 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=60 / rc=2pass / mbtree=1 / bitrate=4136 / ratetol=1.0 / qcomp=0.60 / qpmin=0 / qpmax=60 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / aq=1:1.00
    Codec configuration box                  : avcC
    


    Now convert the H.264 to AV1
    Code (Text):
    time /opt/bin/ffmpeg -i Big_Buck_Bunny_1080_10s_5MB.mp4 -c:v libaom-av1 -crf 30 -b:v 0 -cpu-used 6 -tile-columns 2 -tile-rows 1 -c:a libopus output_av1.mp4
    

    Code (Text):
    time /opt/bin/ffmpeg -i Big_Buck_Bunny_1080_10s_5MB.mp4 -c:v libaom-av1 -crf 30 -b:v 0 -cpu-used 6 -tile-columns 2 -tile-rows 1 -c:a libopus output_av1.mp4
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
      built with gcc 13 (GCC)
      configuration: --prefix=/opt/ffmpeg --extra-cflags='-fPIC -I/opt/ffmpeg/include' --extra-ldflags='-L/opt/ffmpeg/lib -Wl,-Bsymbolic' --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libaom --enable-libass --enable-libzimg --enable-swscale --enable-pic --extra-ldexeflags=-pie --enable-shared
      libavutil      59. 53.100 / 59. 53.100
      libavcodec     61. 28.100 / 61. 28.100
      libavformat    61.  9.102 / 61.  9.102
      libavdevice    61.  4.100 / 61.  4.100
      libavfilter    10.  6.101 / 10.  6.101
      libswscale      8. 13.100 /  8. 13.100
      libswresample   5.  4.100 /  5.  4.100
      libpostproc    58.  4.100 / 58.  4.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Big_Buck_Bunny_1080_10s_5MB.mp4':
      Metadata:
        major_brand     : isom
        minor_version   : 512
        compatible_brands: isomiso2avc1mp41
      Duration: 00:00:10.00, start: 0.000000, bitrate: 4190 kb/s
      Stream #0:0[0x1](und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], 4185 kb/s, 60 fps, 60 tbr, 15360 tbn (default)
        Metadata:
          handler_name    : VideoHandler
          vendor_id       : [0][0][0][0]
    Stream mapping:
      Stream #0:0 -> #0:0 (h264 (native) -> av1 (libaom-av1))
    Press [q] to stop, [?] for help
    [libaom-av1 @ 0x555d2a981dc0] v3.11.0
    Output #0, mp4, to 'output_av1.mp4':
      Metadata:
        major_brand     : isom
        minor_version   : 512
        compatible_brands: isomiso2avc1mp41
        encoder         : Lavf61.9.102
      Stream #0:0(und): Video: av1 (av01 / 0x31307661), yuv420p(tv, progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 60 fps, 15360 tbn (default)
        Metadata:
          encoder         : Lavc61.28.100 libaom-av1
          handler_name    : VideoHandler
          vendor_id       : [0][0][0][0]
        Side data:
          cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
    [out#0/mp4 @ 0x555d2a980e80] video:5978KiB audio:0KiB subtitle:0KiB other streams:0KiB global headers:0KiB muxing overhead: 0.034288%
    frame=  600 fps= 22 q=0.0 Lsize=    5980KiB time=00:00:10.00 bitrate=4899.1kbits/s speed=0.361x 
    
    real    0m27.807s
    user    4m0.674s
    sys     0m4.008s
    

    Code (Text):
    /opt/bin/ffmpeg -i output_av1.mp4
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
      built with gcc 13 (GCC)
      configuration: --prefix=/opt/ffmpeg --extra-cflags='-fPIC -I/opt/ffmpeg/include' --extra-ldflags='-L/opt/ffmpeg/lib -Wl,-Bsymbolic' --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libaom --enable-libass --enable-libzimg --enable-swscale --enable-pic --extra-ldexeflags=-pie --enable-shared
      libavutil      59. 53.100 / 59. 53.100
      libavcodec     61. 28.100 / 61. 28.100
      libavformat    61.  9.102 / 61.  9.102
      libavdevice    61.  4.100 / 61.  4.100
      libavfilter    10.  6.101 / 10.  6.101
      libswscale      8. 13.100 /  8. 13.100
      libswresample   5.  4.100 /  5.  4.100
      libpostproc    58.  4.100 / 58.  4.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'output_av1.mp4':
      Metadata:
        major_brand     : isom
        minor_version   : 512
        compatible_brands: isomav01iso2mp41
        encoder         : Lavf61.9.102
      Duration: 00:00:10.00, start: 0.000000, bitrate: 4899 kb/s
      Stream #0:0[0x1](und): Video: av1 (libaom-av1) (Main) (av01 / 0x31307661), yuv420p(tv, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 4896 kb/s, 60 fps, 60 tbr, 15360 tbn (default)
        Metadata:
          handler_name    : VideoHandler
          vendor_id       : [0][0][0][0]
          encoder         : Lavc61.28.100 libaom-av1
    At least one output file must be specified
    

    Code (Text):
    mediainfo output_av1.mp4
    General
    Complete name                            : output_av1.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media
    Codec ID                                 : isom (isom/av01/iso2/mp41)
    File size                                : 5.84 MiB
    Duration                                 : 10 s 0 ms
    Overall bit rate                         : 4 899 kb/s
    Frame rate                               : 60.000 FPS
    Writing application                      : Lavf61.9.102
    
    Video
    ID                                       : 1
    Format                                   : AV1
    Format/Info                              : AOMedia Video 1
    Format profile                           : Main@L4.1
    Codec ID                                 : av01
    Duration                                 : 10 s 0 ms
    Bit rate                                 : 4 896 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 60.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.039
    Stream size                              : 5.84 MiB (100%)
    Color range                              : Limited
    Codec configuration box                  : av1C
    


    convert AV1 with smaller file size in mind
    Code (Text):
    time /opt/bin/ffmpeg -i Big_Buck_Bunny_1080_10s_5MB.mp4 -c:v libaom-av1 -crf 35 -b:v 2000k -cpu-used 4 -tile-columns 2 -tile-rows 1 -g 250 output_av1_smaller.mp4
    

    Code (Text):
    mediainfo output_av1_smaller.mp4
    General
    Complete name                            : output_av1_smaller.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media
    Codec ID                                 : isom (isom/av01/iso2/mp41)
    File size                                : 2.33 MiB
    Duration                                 : 10 s 0 ms
    Overall bit rate                         : 1 956 kb/s
    Frame rate                               : 60.000 FPS
    Writing application                      : Lavf61.9.102
    
    Video
    ID                                       : 1
    Format                                   : AV1
    Format/Info                              : AOMedia Video 1
    Format profile                           : Main@L4.1
    Codec ID                                 : av01
    Duration                                 : 10 s 0 ms
    Bit rate                                 : 1 953 kb/s
    Maximum bit rate                         : 2 000 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 60.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.016
    Stream size                              : 2.33 MiB (100%)
    Color range                              : Limited
    Codec configuration box                  : av1C
    
     
  5. Kuro

    Kuro Member

    109
    13
    18
    Feb 8, 2018
    Ratings:
    +25
    Local Time:
    6:13 AM
    1.15.10
    10.3
    I'm using Amal linux 9.4, 140.00beta01. I just added ENABLE_AVONE='y', should I now choose 1 or 2 to update AV1? Before I Installed (1)
    upload_2025-1-3_4-57-12.png
     
  6. eva2000

    eva2000 Administrator Staff Member

    54,328
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    9:13 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    submenu option 1 or 2 should do the same thing, try either :)
     
  7. Kuro

    Kuro Member

    109
    13
    18
    Feb 8, 2018
    Ratings:
    +25
    Local Time:
    6:13 AM
    1.15.10
    10.3
    upload_2025-1-3_5-12-3.png
    I have run both option 1 and option 2, but I still do not see 'libaom'

    HTML:
    [06:11][root@Amal-2 opt]#  /opt/bin/ffmpeg -version
    ffmpeg version git-2025-01-03-b22ce90 Copyright (c) 2000-2025 the FFmpeg developers
    built with gcc 13 (GCC)
    configuration: --prefix=/opt/ffmpeg --extra-cflags=' -I/opt/ffmpeg/include' --extra-ldflags=-L/opt/ffmpeg/lib --bindir=/opt/bin --pkg-config-flags=--static --extra-libs=-lpthread --extra-libs=-lm --enable-gpl --disable-debug --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libass --enable-libzimg --enable-swscale --enable-shared
    libavutil      59. 53.100 / 59. 53.100
    libavcodec     61. 28.100 / 61. 28.100
    libavformat    61.  9.102 / 61.  9.102
    libavdevice    61.  4.100 / 61.  4.100
    libavfilter    10.  6.101 / 10.  6.101
    libswscale      8. 13.100 /  8. 13.100
    libswresample   5.  4.100 /  5.  4.100
    libpostproc    58.  4.100 / 58.  4.100
    
     
  8. eva2000

    eva2000 Administrator Staff Member

    54,328
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    9:13 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    did set variable in /etc/centminmod/ffmpeg_config.inc not /etc/centminmod/custom_config.inc
     
  9. Kuro

    Kuro Member

    109
    13
    18
    Feb 8, 2018
    Ratings:
    +25
    Local Time:
    6:13 AM
    1.15.10
    10.3
    Additionally, it seems like the configuration file has duplicate entries. This server is newly installed, and I haven't added anything to the config file myself. The duplication appears to be from lines 5 to 10
    upload_2025-1-3_5-20-42.png
     

    Attached Files:

  10. eva2000

    eva2000 Administrator Staff Member

    54,328
    12,198
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,763
    Local Time:
    9:13 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    strange most of those are only set by Centmin Mod at initial installer time.
     
  11. Kuro

    Kuro Member

    109
    13
    18
    Feb 8, 2018
    Ratings:
    +25
    Local Time:
    6:13 AM
    1.15.10
    10.3
    Ah, I understand now. My internet connection was lost while I was installing, and then I reinstalled it. That's probably why it's duplicated