Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (10530)

  • ffmpeg : move a local variable definition later.

    6 mai 2013, par Nicolas George
    ffmpeg : move a local variable definition later.
    

    Fix a segfault when using the -map option without input files.

    • [DH] ffmpeg_opt.c
  • Revision 5ab920d2ae : Using local variable for token_cache. The difference with the old code is that

    3 décembre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_detokenize.c


     Modify /vp9/decoder/vp9_detokenize.h


     Modify /vp9/decoder/vp9_onyxd_int.h



    Using local variable for token_cache.

    The difference with the old code is that originally the whole token_cache
    was initialized with zeros at the beginning of decode_coefs() function.
    Now we set several zero values explicitly with "token_cache[scan[c]] = 0".

    Change-Id : I88cc5031f01d13012d1a4491739c36cb44f9401e

  • Making and displaying a video

    4 mars 2018, par Mehdi Shojaeian

    I have to develop an app which shoud crop and cut video .
    I decide to use ffmpeg and I tested below library :
    https://github.com/WritingMinds/ffmpeg-android-java

    but I get [libx264 @ 0xf506d400] using cpu capabilities: none!at console and running so so slowly.

    so I decide to build my own ffmpeg prebuilt and try my hard and test below link for make prebuild ffmpeg :

    But enety build has own error, such as "couldn’t find c comiler"
    After too many search I found and build ffmpeg but the result is some .so file (listed below) :

    • libavcodec-58.so
    • libavdevice-58.so
    • libavformat-58.so
    • libavutil-56.so
    • libpostproc-55.so
    • libswresample-3.so
    • libswscale-5.so

    my build.sh is :

    NDK=/Users/mehdi/Documents/adt-bundle-mac-x86_64-20140702/ndk/android-ndk-r13b
    SYSROOT=$NDK/platforms/android-24/arch-arm/
    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64
    function build_one
    {
    ./configure \
       --prefix=$PREFIX \
       --enable-shared \
       --disable-static \
       --disable-doc \
       --disable-ffmpeg \
       --disable-ffplay \
       --disable-ffprobe \
       --enable-avdevice \
       --disable-doc \
       --disable-symver \
       --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
       --target-os=linux \
       --cpu=cortex-a8 \
       --arch=arm \
       --enable-cross-compile \
       --sysroot=$SYSROOT \
       --extra-cflags="-Os -fpic $ADDI_CFLAGS" \
       --extra-ldflags="$ADDI_LDFLAGS" \
       --enable-runtime-cpudetect \
       --enable-gpl \
       --enable-avfilter \
       --enable-encoders  \
       --enable-muxers \
       --enable-protocols  \
       --enable-parsers \
       --enable-demuxers \
       --enable-decoders \
       --enable-bsfs \
       --enable-network \
       --enable-swscale  \
       --enable-asm

       $ADDITIONAL_CONFIGURE_FLAG
    make clean
    make
    make install
    }
    CPU=arm
    PREFIX=$(pwd)/android/$CPU
    ADDI_CFLAGS="-marm"
    build_one

    and I put .so files into cpp folder in android studio and make CMakeLists.txt.
    every thing is ok up to now but where can I found ffmpeg file to execute command in java .