Recherche avancée

Médias (91)

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • Revision 3611 : Ne pas planter bêtement si on n’a pas la table journals

    17 juin 2010, par kent1 — Log

    Ne pas planter bêtement si on n’a pas la table journals

  • Read sample encrypted AAC with FFmpeg

    25 novembre 2024, par rdrmntn

    I'm trying to open a sample encrypted AAC file (packed audio) using FFmpeg APIs.

    


    I can open an unencrypted AAC file using

    


         AVFormatContext* iContext = nullptr;
     avformat_open_input(&iContext, mediaFileName.c_str(), nullptr, nullptr);


    


    I'm also able to open a sample encrypted fmp4 segment using

    


         AVDictionary *options = nullptr;
     av_dict_set(&options, "decryption_key", ssKey.str().c_str(), 0);
     AVFormatContext* iContext = nullptr;
     int ret = avformat_open_input(&iContext, mediaFileName.c_str(), nullptr, &options);


    


    But when trying to open a sample encrypted AAC file I find no way to set the decryption key. When using code snippet above, decryption_key option is not consumed by the demuxer which, according to documentation, means that it is not recognized by the aac demuxer.

    


    An HLS asset with sample encrypted AAC audio track is playable in ffplay so it should be possible to open the format. Anyone has any pointers on how ?

    


  • avcodec/webp : Return directly when creating Huff table fails

    22 octobre 2020, par Andreas Rheinhardt
    avcodec/webp : Return directly when creating Huff table fails
    

    Neither the auxiliary VLC table nor the code_lengths array need to be
    freed if creating the auxiliary VLC table fails.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/webp.c