Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (64)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9362)

  • 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 .

  • rtpdec_qt : Use a local variable instead of RTP_FLAG_KEY

    4 mars 2015, par Martin Storsjö
    rtpdec_qt : Use a local variable instead of RTP_FLAG_KEY
    

    The only case where RTP_FLAG_KEY actually is needed is
    in RDT, where such a flag needs to be passed via the
    rtpdec parse function’s flags parameter.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtpdec_qt.c
  • Revision f45fe16684 : configure.sh : quote local variables fixes issue #711 specifying a multiword CC

    7 mars 2014, par James Zern

    Changed Paths :
     Modify /build/make/configure.sh



    configure.sh : quote local variables

    fixes issue #711

    specifying a multiword CC, e.g., CC='gcc -m32', would cause the failure
    under dash

    reported in
    https://bugs.gentoo.org/show_bug.cgi?id=498136

    patch by floppymaster at gmail dot com

    Change-Id : I2ba246f765646161538622739961ec0f6c2d8c2d