Recherche avancée

Médias (91)

Autres articles (106)

  • 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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9188)

  • configure : Add additional glslang libraries to make linking work

    18 août 2020, par Philip Langdale
    configure : Add additional glslang libraries to make linking work
    

    The latest builds of glslang introduce new libraries that need to be
    linked for all symbols to be fully resolved.

    This change will break building against older installations of glslang
    and it's very hard to tell them apart as the library change upstream
    was not accompanied by any version bump and no official release has
    been made with this change it - just lots of people packaging up git
    snapshots. So, apologies in advance.

    • [DH] configure
  • define ffmpeg binaries path dynamically in php depending on OS

    15 mars 2019, par Hue Man

    I’m trying to define the ffmpeg binaries path dynamically in php depending on OS...

    Here’s my code :

    // Check if OS is Windows
    if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
    $OS = 'win';
    // 'This is a server using Windows!';
    }

    require ABSPATH . '/vendor/autoload.php';

    if($OS == 'win')
    {
       $ffmpegpath = ABSPATH . 'FFMpeg/bin/ffmpeg.exe';
       $ffprobepath = ABSPATH . 'FFMpeg/bin/ffprobe.exe';
    }

    $ffmpeg = FFMpeg\FFMpeg::create(array(
    'ffmpeg.binaries' => $ffmpegpath,
    'ffprobe.binaries' => $ffprobepath,
    'timeout' => 3600, // The timeout for the underlying process
    'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
    ));

    For some reason it doesn’t work.

    If I hard code the same paths within the ffmpeg construct function it does work.

    Any ideas ?

    Thanks.

  • mlpdec : Do not set invalid context in read_restart_header

    10 juillet 2013, par Luca Barbato
    mlpdec : Do not set invalid context in read_restart_header
    

    The faulty values rippled further down the codepath causing a
    hard-to-track segfault in the assembly code.

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org

    • [DBH] libavcodec/mlpdec.c