Changes between Version 5 and Version 6 of How to compile FFmpeg for Raspberry Pi (Raspbian)


Ignore:
Timestamp:
11/06/2012 11:12:53 PM (7 months ago)
Author:
burek
Comment:

Fixed several typos and corrected invalid --prefix

Legend:

Unmodified
Added
Removed
Modified
  • How to compile FFmpeg for Raspberry Pi (Raspbian)

    v5 v6  
    113113}}} 
    114114 
    115 After you do make install, all the libraries and binaries will bi installed in "/my/path/were/i/keep/built/arm/stuff", so if you are compiling some libraries as dependencies for other things, you will most probably reference this directory later using: 
     115After you finish, all the libraries and binaries will be installed in "/my/path/were/i/keep/built/arm/stuff", so if you are compiling some libraries as dependencies for other things, you will most probably reference this directory later using: 
    116116{{{ 
    117117cd /my/path/where/i/keep/my/source/code 
     
    155155=== Basic FFmpeg, without additional libraries === 
    156156{{{ 
    157 ./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --prefix=/root/my/build 
     157./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --prefix=/my/path/were/i/keep/built/arm/stuff 
    158158make 
    159159make install 
     
    162162=== FFmpeg with libaacplus, libx264 and alsa-lib === 
    163163{{{ 
    164 ./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree --enable-libaacplus --extra-cflags="-I/my/path/were/i/keep/built/arm/stuff/include" --extra-ldflags="-L/my/path/were/i/keep/built/arm/stuff/lib" --prefix=/my/path/were/i/keep/built/arm/stuff 
     164./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --prefix=/my/path/were/i/keep/built/arm/stuff --enable-gpl --enable-libx264 --enable-nonfree --enable-libaacplus --extra-cflags="-I/my/path/were/i/keep/built/arm/stuff/include" --extra-ldflags="-L/my/path/were/i/keep/built/arm/stuff/lib"  
    165165make 
    166166make install