Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (3406)

  • Fix mismatched oc_mb_fill_cmapping11 signature.

    31 octobre 2014, par Tim Terriberry
    Fix mismatched oc_mb_fill_cmapping11 signature.
    

    oc_mb_fill_cmapping11() was defined without the last two parameters
    of its fellow mapping functions, meaning it got called with extra
    undeclared parameters.

    This could confuse the emscripten JavaScript cross-compiler's asm.js
    optimizations, as it's very picky about function signatures.

    Fixes #2068.
    Patch by Brion Vibber <brion@pobox.com>.

    git-svn-id : http://svn.xiph.org/trunk/theora@19261 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/state.c
  • can't find NDK camera and media native API symbols when linking libavdevice.a to libffmpeg.so

    4 septembre 2018, par jianwen

    I’m using NDK tools to build ffmpeg shared lib which will be used in my
    android rtsp project.All needed components are compiled/linked as seperate
    static libs, and at last these libs will be linked as a single shared lib.
    Everything goes well except the last step. error happens when linking
    libavdevice, all symbols in NDK camera and media can not be found, error
    log :

    libavdevice/android_camera.c:702: error: undefined reference    
    to 'ACameraCaptureSession_stopRepeating'
    libavdevice/android_camera.c:706: error: undefined reference
    to 'ACameraCaptureSession_close'
    libavdevice/android_camera.c:711: error: undefined reference
    to 'ACaptureRequest_removeTarget'
    libavdevice/android_camera.c:712: error: undefined reference
    to 'ACaptureRequest_free'
    libavdevice/android_camera.c:717: error: undefined reference
    to 'ACameraOutputTarget_free'
    libavdevice/android_camera.c:722: error: undefined reference
    to 'ACaptureSessionOutputContainer_remove'
    libavdevice/android_camera.c:724: error: undefined reference
    to 'ACaptureSessionOutput_free'
    libavdevice/android_camera.c:729: error: undefined reference
    to 'ANativeWindow_release'
    libavdevice/android_camera.c:734: error: undefined reference
    to 'ACaptureSessionOutputContainer_free'
    libavdevice/android_camera.c:739: error: undefined reference
    to 'ACameraDevice_close'
    libavdevice/android_camera.c:744: error: undefined reference
    to 'AImageReader_delete'
    libavdevice/android_camera.c:749: error: undefined reference
    to 'ACameraMetadata_free'
    libavdevice/android_camera.c:756: error: undefined reference
    to 'ACameraManager_delete'
    libavdevice/android_camera.c:172: error: undefined reference
    to 'ACameraDevice_getId'
    libavdevice/android_camera.c:163: error: undefined reference
    to 'ACameraDevice_getId'
    libavdevice/android_camera.c:392: error: undefined reference
    to 'AImageReader_acquireLatestImage'
    libavdevice/android_camera.c:483: error: undefined reference  
    to 'AImage_delete'
    libavdevice/android_camera.c:345: error: undefined reference
    to 'AImage_getPlanePixelStride'
    libavdevice/android_camera.c:346: error: undefined reference
    to 'AImage_getPlaneData'
    ...

    Here is my build script which is ran on my Windows 7 x86_64 PC.

    #!/bin/bash
    export TMPDIR=D:/other/AndroidDevelopment/ffmpeg-4.0.2/ffmpegtemp
    NDK=D:/software/app/android_sdk/ndk-bundle
    SYSROOT=$NDK/platforms/android-28/arch-x86_64/
    TOOLCHAIN=$NDK/toolchains/x86_64-4.9/prebuilt/windows-x86_64
    CPU=x86_64
    PREFIX=./android/$CPU

    function build_one
    {
       ./configure \
       --prefix=$PREFIX \
       --enable-static \
       --enable-jni \
       --enable-pthreads \
       --enable-mediacodec \
       --disable-asm \
       --disable-shared \
       --disable-doc \
       --disable-ffmpeg \
       --disable-ffplay \
       --disable-ffprobe \
       --disable-doc \
       --disable-symver \
       --cross-prefix=$TOOLCHAIN/bin/x86_64-linux-android- \
       --target-os=android \
       --arch=x86_64 \
       --enable-cross-compile \
       --sysroot=$SYSROOT \
       --extra-cflags=" -isysroot $NDK/sysroot  -I$NDK/sysroot/usr/include/x86_64-linux-android" \
       --extra-ldflags=-pie
    make clean
    make -j4
    make install

    $TOOLCHAIN/bin/x86_64-linux-android-ld \
    -rpath-link=$SYSROOT/usr/lib64 \
    -L$SYSROOT/usr/lib64 \
    -L$PREFIX/lib \
    -soname libffmpeg.so -shared -nostdlib -Bsymbolic --whole-archive --no- undefined -o \
    $PREFIX/libffmpeg.so \
    libavcodec/libavcodec.a \
    libavfilter/libavfilter.a \
    libswresample/libswresample.a \
    libavformat/libavformat.a \
    libavutil/libavutil.a \
    libswscale/libswscale.a \
    libavdevice/libavdevice.a \
    -lc -lm -lz -ldl -llog --dynamic-linker=/system/bin/linker \
    $TOOLCHAIN/lib/gcc/x86_64-linux-android/4.9.x/libgcc.a \
    }
    build_one
  • FFMPEG android compile error

    30 juin 2016, par Sujith Manjavana

    I’m trying to compile ffmpeg for android using ndk. os:ubuntu 13.10. I followed this tutorial. but when i run the build_android.sh it gives me the following errors-

    sujith@Vaio:~$ cd /home/sujith/ndk9d/sources/ffmpeg
    sujith@Vaio:~/ndk9d/sources/ffmpeg$ sudo chmod +x build_android.sh
    [sudo] password for sujith:
    sujith@Vaio:~/ndk9d/sources/ffmpeg$ ./build_android.sh
    /home/sujith/sujith/ndk9d/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-         x86_64/bin/arm-linux-androideabi-gcc is unable to create an executable file.
    C compiler test failed.

    If you think configure made a mistake, make sure you are using the latest
    version from Git.  If the latest version fails, report the problem to the
    ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
    Include the log file "config.log" produced by configure as this will help
    solving the problem.
    Makefile:2: config.mak: No such file or directory
    Makefile:53: /common.mak: No such file or directory
    Makefile:93: /libavutil/Makefile: No such file or directory
    Makefile:93: /library.mak: No such file or directory
    Makefile:95: /doc/Makefile: No such file or directory
    Makefile:178: /tests/Makefile: No such file or directory
    make: *** No rule to make target `/tests/Makefile'.  Stop.
    Makefile:2: config.mak: No such file or directory
    Makefile:53: /common.mak: No such file or directory
    Makefile:93: /libavutil/Makefile: No such file or directory
    Makefile:93: /library.mak: No such file or directory
    Makefile:95: /doc/Makefile: No such file or directory
    Makefile:178: /tests/Makefile: No such file or directory
    make: *** No rule to make target `/tests/Makefile'.  Stop.
    Makefile:2: config.mak: No such file or directory
    Makefile:53: /common.mak: No such file or directory
    Makefile:93: /libavutil/Makefile: No such file or directory
    Makefile:93: /library.mak: No such file or directory
    Makefile:95: /doc/Makefile: No such file or directory
    Makefile:178: /tests/Makefile: No such file or directory
    make: *** No rule to make target `/tests/Makefile'.  Stop.

    here is my build_android.sh

    #!/bin/bash
    NDK=$HOME/sujith/ndk9d
    SYSROOT=$NDK/platforms/android-9/arch-arm/
    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64
    function build_one
    {
    ./configure \
    --prefix=$PREFIX \
    --enable-shared \
    --disable-static \
    --disable-doc \
    --disable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --disable-avdevice \
    --disable-doc \
    --disable-symver \
    --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
    --target-os=linux \
    --arch=arm \
    --enable-cross-compile \
    --sysroot=$SYSROOT \
    --extra-cflags="-Os -fpic $ADDI_CFLAGS" \
    --extra-ldflags="$ADDI_LDFLAGS" \
    $ADDITIONAL_CONFIGURE_FLAG
    make clean
    make
    make install
    }
    CPU=arm
    PREFIX=$(pwd)/android/$CPU
    ADDI_CFLAGS="-marm"
    build_one

    my build_android.sh is located in ffmpeg source root directory.
    how to fix this ? please help me..