Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (52)

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

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

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

Sur d’autres sites (11350)

  • Deprecate AFD field and add AFD as side-data

    3 août 2014, par Kieran Kunhya
    Deprecate AFD field and add AFD as side-data
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/APIchanges
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/mpeg12dec.c
    • [DH] libavcodec/version.h
    • [DH] libavfilter/vf_showinfo.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.h
  • avcodec : Deprecate dtg_active_format field in favor of avframe side-data

    3 août 2014, par Kieran Kunhya
    avcodec : Deprecate dtg_active_format field in favor of avframe side-data
    

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/mpeg12dec.c
    • [DBH] libavcodec/version.h
    • [DBH] libavfilter/vf_showinfo.c
    • [DBH] libavutil/frame.h
    • [DBH] libavutil/version.h
  • How to apply effects to RGB frame decoded using ffmpeg ?

    23 juillet 2014, par user3665376

    I wanted to apply changes in contrast,brightness,saturation values of a video while rendering on android.I am using ffmpeg for decoding my mpeg4 video.

    I have two options for applying the effects ,

    1) Apply the changes on raw YUV frames .

    2) Apply the changes to RGB frames which are created from raw YUV frames .

    Which of the above is the best approach ?

    I started with option 2 and found a utility function at libwscale/util.c which has the below signature.

    int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],
                            int srcRange, const int table[4], int dstRange,
                            int brightness, int contrast, int saturation);

    but the parameter specification of the above function was difficult to understand. Can anybody do a little elaboration on the parameters use in this function ?