Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (67)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (8632)

  • avcodec/alsdec : Fix decoding error with mono audio files

    7 mai 2021, par Michael Niedermayer
    avcodec/alsdec : Fix decoding error with mono audio files
    

    highest_decoded_channel is modified to serve as meant.

    Reported-by : Noboru Harada <noboru@ieee.org>

    Regression since : a11aa5f3ed7ee4d2385a7b725d43f6070d790b4c
    Fixes : Sin48k16bit1ch.mp4
    Reviewed-by : Thilo Borgmann <thilo.borgmann@mail.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/alsdec.c
  • Windows : Ensure FreeLibrary() calls match LoadLibrary() calls

    9 août 2015, par Erik de Castro Lopo
    Windows : Ensure FreeLibrary() calls match LoadLibrary() calls
    

    The function get_utf8_argv() was calling LoadLibrary to load msvcrt.dll
    but wasn’t calling FreeLibrary() if GetProcAddress() fails.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/share/win_utf8_io/win_utf8_io.c
  • libFLAC : More metadata_iterators fixes

    22 mai 2016, par Erik de Castro Lopo
    libFLAC : More metadata_iterators fixes
    

    The previous fixes for metadata_iterators didn’t completely fix the problem.

    The behavior of chain_prepare_for_write_() must always be the same as the
    behavior of FLAC__metadata_chain_check_if_tempfile_needed(). Before this
    fix, one check was missing in FLAC__metadata_chain_check_if_tempfile_needed(),
    and also chain_prepare_for_write_() checked the sizes of the metadata blocks
    *after* making the changes to the chain, while
    FLAC__metadata_chain_check_if_tempfile_needed() does it *before* the changes.

    This patch changes FLAC__metadata_chain_check_if_tempfile_needed() so that it
    keeps some info (lbs_state, lbs_size) about estimated changes and then uses
    it to check the block sizes.

    It also simplifies FLAC__metadata_chain_check_if_tempfile_needed() a little.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/metadata_iterators.c