Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (77)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Struggling to make ffmpeg function properly on Azure's app service [closed]

    26 novembre 2023, par rickkorsten

    I've developed a backend using Node.js and Express, with certain functionalities relying on ffmpeg. While everything runs smoothly locally, I've encountered challenges after deploying the backend to Azure as an app service. I've attempted several solutions, such as installing ffmpeg via the SSH command line and adding a deploy.cmd file, but none have proven effective. Has anyone successfully integrated ffmpeg with an Azure app service and could offer guidance ?

    


  • doc/developer : (security) researchers should be credited

    3 avril 2024, par Michael Niedermayer
    doc/developer : (security) researchers should be credited
    

    Reviewed-by : Tomas Härdin <git@haerdin.se>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/developer.texi
  • stream_decoder : check state==ABORTED after process_single() for seek

    6 juillet 2016, par Max Kellermann
    stream_decoder : check state==ABORTED after process_single() for seek
    

    FLAC__stream_decoder_process_single() ignores frame_sync_() errors,
    which means the caller cannot rely solely on the boolean return value,
    it is also required to check the new "state".

    After FLAC__stream_decoder_process_until_end_of_metadata(),
    state==SEARCH_FOR_FRAME_SYNC and
    last_frame.header.number_type==FRAME_NUMBER. When an application
    seeks at this time, but an I/O error occurs, then
    FLAC__stream_decoder_process_single() returns true, but no frame has
    been read yet, i.e. last_frame.header.number_type is still
    FRAME_NUMBER. This triggers the assertion in
    seek_to_absolute_sample_() :

    FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER) ;

    So what needs to be done is check for state==ABORTED after the
    FLAC__stream_decoder_process_single() call.

    This bug can be triggered remotely with the Music Player Daemon
    (https://www.musicpd.org/), and crashes the process.

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>
    Closes : https://github.com/xiph/flac/pull/12

    • [DH] src/libFLAC/stream_decoder.c