Changes between Version 191 and Version 192 of CompilationGuide/Ubuntu


Ignore:
Timestamp:
Mar 31, 2025, 6:35:39 PM (17 months ago)
Author:
llogan
Comment:

Update nasm version. Removed needless mention of derivative distro Linux Mint.

Legend:

Unmodified
Added
Removed
Modified
  • CompilationGuide/Ubuntu

    v191 v192  
    88[[PageOutline(1, Contents)]]
    99
    10 This guide for standard support releases of '''Ubuntu''', '''Debian''', and '''Linux Mint''' and will provide a local, non-system installation of FFmpeg with several external libraries.
     10This guide for standard current releases of '''Ubuntu''' and '''Debian'''. It will provide a local, non-system installation of FFmpeg with several external libraries.
    1111
    1212You may also refer to the [[CompilationGuide/Generic|Generic Compilation Guide]] for additional information about compiling software.
     
    9999An assembler used by some libraries.
    100100
    101 If your repository provides nasm version ≥ 2.13 then you can install that instead of compiling:
     101If your repository provides nasm version ≥ 2.14 then you can install that instead of compiling:
    102102
    103103{{{
     
    111111#!sh
    112112cd ~/ffmpeg_sources && \
    113 wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/nasm-2.16.01.tar.bz2 && \
    114 tar xjvf nasm-2.16.01.tar.bz2 && \
    115 cd nasm-2.16.01 && \
     113wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/nasm-2.16.03.tar.bz2 && \
     114tar xjvf nasm-2.16.03.tar.bz2 && \
     115cd nasm-2.16.03 && \
    116116./autogen.sh && \
    117117PATH="$HOME/bin:$PATH" ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" && \