Recherche avancée

Médias (91)

Autres articles (106)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (10159)

  • AVIOContext.error is not zero for all MP3 in macOS

    31 août 2018, par Igor

    AVFormatContext->pb->error always returns non-zero value (77236704) for all MP3 audio files on macOS with 64-bit version of ffmpeg. I checked 10 MP3 files from different sources. However decoding works fine.

    Also I see a message in the log (on macOS and Windows) :

    [mp3 @ 0000000001469200] Estimating duration from bitrate, this may be inaccurate

    If I try to reset AVIOContext.error to zero it causes a fatal crash of ffmpeg in av_read_frame after 50-100 calls of av_read_frame.

    This problem doesn’t happen with 32-bit dylibs of ffmpeg on macOS. Also OGG, WMA, AAC files don’t give same problem on macOS with 64-bit of dylibs.

    64-bit version of ffmpeg on Windows doesn’t produce this error for same MP3 files. AVIOContext.error is always zero.

    I used DLLs and dylibs from Zeranoe, ffmpeg 4.0.2

    macOS High Sierra 10.13.6

  • avcodec/vp8 : Constify slice threads' ptr to main context

    23 juillet 2022, par Andreas Rheinhardt
    avcodec/vp8 : Constify slice threads' ptr to main context
    

    Modifying the main context from a slice thread is (usually)
    a data race, so it must not happen. So only use a pointer to const
    to access the main context.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp8.c
  • avfilter/asrc_flite : Don't segfault when using list_voices option

    6 octobre 2021, par Andreas Rheinhardt
    avfilter/asrc_flite : Don't segfault when using list_voices option
    

    Could also happen if initializing flite failed* or if an unknown voice
    has been selected or if registering the voice failed.

    * : which it currently can't, because it is a no-op.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/asrc_flite.c