Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (100)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6609)

  • Streaming webm with ffserver error-

    4 août 2014, par user3614833

    I have setup ffserver to stream mpeg-ts, flv from a live rtsp feed via ffmpeg, but when i also include webm format in the configuration and try to play the webm file in browser i get the following error in the log

    "Only VP8,VP9 video and Vorbis,Opus(experimental, use -strict -2) audio and WebVTT subtitles are supported for WebM"

    The ffmpeg command i use is
    ffmpeg -i rtsp ://192.168.1.1:5543/lowQ.sdp -c copy http://xxx.xxxx.xxxx:8080/feed1.ffm

    The ffserver configuration is

    Feed feed1.ffm
    Format webm
    NoAudio
    AVOptionVideo flags +global_header
    VideoBitRate 500k
    VideoBufferSize 40
    VideoFrameRate 25
    VideoCodec libvpx
    StartSendOnKey
    Preroll 15

    Appreciate your help in this !

  • avcodec : add option to make is_intra_more_likely() from error concealment return...

    2 mai 2014, par Michael Niedermayer
    avcodec : add option to make is_intra_more_likely() from error concealment return "no"
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/codecs.texi
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/error_resilience.c
    • [DH] libavcodec/options_table.h
    • [DH] libavcodec/version.h
  • FFMPEG build error : Permission Denied

    9 juin 2014, par Parikksit Bhisay

    So I’m trying to build ffmpeg by following this exact guide :

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

    This is my build_android.sh file :

    #!/bin/bash
    NDK=/android-ndk-r9d
    SYSROOT=$NDK/platforms/android-9/arch-arm/
    TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/darwin-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"

    This file is in the ffmpeg-2.0.1 folder. I cd into that folder and first execute this command :

    sudo chmod -x build_android.sh

    Once that is done, I try ./build_android.sh... This is the error message I get :

    -bash: ./build_android.sh: Permission denied

    I don’t know whats wrong. I tried doing sudo su and then execute, sometimes it just doesn’t give me any error and neither does it build.

    Thank you for your help !

    Regards,
    Perry.