Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (111)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (10397)

  • avcodec/avcodec : Sanitize options before using them

    16 mars 2021, par Andreas Rheinhardt
    avcodec/avcodec : Sanitize options before using them
    

    This is how it is supposed to happen, yet when using frame threading,
    the codec's init function has been called before preinit. This can lead
    to crashes when e.g. using unsupported lowres values for decoders
    together with frame threading.

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

    • [DH] libavcodec/avcodec.c
  • avformat/mxfdec : remove check for NULL MXFTrack in mxf_set_pts

    31 mai 2018, par Marton Balint
    avformat/mxfdec : remove check for NULL MXFTrack in mxf_set_pts
    

    It cannot happen for video streams.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfdec.c
  • avformat/utils : Combine identical statements

    14 avril 2021, par Andreas Rheinhardt
    avformat/utils : Combine identical statements
    

    This would only make a difference in case the first attempt to
    initialize the encoder failed and the second succeeded. The only
    reason I can think of for this to happen is that the options (in
    particular the codec whitelist) are not used for the second try
    and that obviously implies that we should not even try a second time
    to open the decoder.

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

    • [DH] libavformat/utils.c