Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (3)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (2155)

  • avfilter/f_ebur128 : multiply is usually faster than divide

    24 février 2022, par Paul B Mahol
    avfilter/f_ebur128 : multiply is usually faster than divide
    

    Also guard against overflow when subtracting from unsigned.

    • [DH] libavfilter/f_ebur128.c
  • Static linking FFmpeg libraries on android

    23 juillet 2021, par TheWaterProgrammer

    I am trying to build FFmpeg for android as static libraries on a MacOS Sierra machine.

    



    Following is my buildscript.sh which is very much based upon the one in here

    



    #!/bin/bash

cd ffmpeg-3.3.4

NDK=/path/to/android/ndk/android-ndk-r15c
SYSROOT=$NDK/platforms/android-21/arch-arm64/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64
AR=$TOOLCHAIN/bin/arm-linux-androideabi-ar
CPREFIX=$TOOLCHAIN/bin/arm-linux-androideabi-
CC=$TOOLCHAIN/bin/arm-linux-androideabi-gcc
CXX=$TOOLCHAIN/bin/arm-linux-androideabi-g++
LD=$TOOLCHAIN/bin/arm-linux-androideabi-ld
RANLIB=$TOOLCHAIN/bin/arm-linux-androideabi-ranlib
STRIP=$TOOLCHAIN/bin/arm-linux-androideabi-strip
X264LIB=$X264/android/arm/lib/
X264INC=$X264/android/arm/include/

function build_ffmpeg_android {

./configure \
    --prefix=$PREFIX \
    --disable-stripping
    --arch=arm \
    --cpu=cortex-a8 \
    --target-os=linux \
    --enable-cross-compile \
    --enable-pic \
    --disable-programs \
    --enable-static \
    --disable-shared \
    --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
    --disable-doc \
    --enable-postproc \
    --enable-swscale \
    --enable-avfilter \
    --enable-avresample \
    --disable-opencl \
    --disable-securetransport \
    --enable-gpl \
    --sysroot=$SYSROOT \
    --extra-cflags="-Os -fpic $ADDI_CFLAGS -I$X264INC"  \
    --extra-ldflags="$ADDI_LDFLAGS -s -L$X264LIB -lx264" \
    --enable-gpl \
    --enable-decoders \
    --enable-encoders \
    --enable-muxers \
    --enable-demuxers \
    --enable-parsers \
    --enable-protocols \
    --enable-filters \
    --enable-avresample \
    --enable-libfreetype \
    --disable-indevs \
    --enable-indev=lavfi \
    --disable-outdevs \
    --enable-hwaccels \
    --enable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --disable-network \
    --enable-libx264 \
    --enable-zlib \
    --enable-muxer=md5
    make clean
    make -j9
    make install
}

CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"

build_ffmpeg_android


    



    The output of above script is placed inside ffmpeg-3.3.4/android/arm.

    



    My issue :
    
When trying to link to these .a libraries from my app using -lavformat -lavcodec -lswscale -lavutil -lavfilter -lswresample -lavdevice,
    
I get the following linker error for each of them

    



    :-1: error: error: avformat: no archive symbol table (run ranlib)
:-1: error: error: avcodec: no archive symbol table (run ranlib)
:-1: error: error: swscale: no archive symbol table (run ranlib)
:-1: error: error: avutil: no archive symbol table (run ranlib)
:-1: error: error: avfilter: no archive symbol table (run ranlib)
:-1: error: error: swresample: no archive symbol table (run ranlib)
:-1: error: error: avdevice: no archive symbol table (run ranlib)


    



    Looking at this discussion here, I am doing it correct by selecting arm-linux-androideabi-ar in CPREFIX.

    



    Trying to solve the error, I've also added the following configure flag for ranlib to be picked up specifically for android but doesn't seem to help.

    



    RANLIB=$TOOLCHAIN/bin/arm-linux-androideabi-ranlib


    



    My Questions :

    



      

    • What else am I missing here ?
    • 


    • What is needed in my buildscript.sh to pick the correct ranlib & stop complaining about archive symbol table when linking from my app ?
    • 


    


  • avcodec/sbcdec : Remove always-false check

    1er octobre 2022, par Andreas Rheinhardt
    avcodec/sbcdec : Remove always-false check
    

    We never guard against a user freeing/stealing the private context ;
    and returning AVERROR(EIO) is inappropriate.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/sbcdec.c