Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (42)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5396)

  • FFMPEG for android in Windows not successfully compile

    23 décembre 2014, par PRAKASH UBHADIYA

    I am trying to compile FFMPEG for android in Windows 8.1 but i got error at 32 line in build_android.sh

    ./build_android.sh : line 32 : syntax error : unexpected end of file

    when i execute command in cygwin

    chmod +x build_android.sh

    ./build_android.sh

    If you are knows steps to compile ffmpeg for android in windows and how to use ffmpeg in android then pleas reply me.

    I am referencing .
    http://www.packtpub.com/sites/default/files/downloads/Developing_Multimedia_Applications_with_NDK.pdf
    ,

    https://trac.ffmpeg.org/wiki/CompilationGuide/Android and

    http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9

    build_android.sh

    #!/bin/bash
    NDK=E:/android-ndk-r9d
    SYSROOT=$NDK/platforms/android-9/arch-arm/
    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.6/prebuilt/windows
    function build_one { ./configure \
    --prefix=$PREFIX \
    --disable-shared \
    --enable-static \
    --disable-doc \
    --enable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --enable-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
  • FFmpeg compilation with encoder x264 not found Windows

    23 novembre 2016, par Bernhard Lutz

    FFmpeg compilation with encoder x264 not found Windows

    I am trying to compile FFmpeg with several encoder (x264, NVENC). I already
    managed to compile FFmpeg with MinGW and also x264 but I do not know how I can
    tell where my compiled encoders are.

    I have a folder where my FFmpeg sources are and in this directory I have my
    compiled x264 encoder in a subfolder called x264.

    OS : Windows 10

    Compiler : MinGW

  • invalid syntax while concat mpeg files on windows PYTHON

    26 novembre 2016, par SMH

    I am tying to concatenate all mpeg files together in one new file in windows 7, I adjusted the environment variables and running the code from python shell but it gives invalid syntax. Any help as I am new to Python and ffmpeg library ?

    My code :

    ffmpeg -f concat -i <(for f in glob.glob("*.mpeg"); do echo "file '$PWD/$f'"; done) -c copy output.mpeg

    Thanks