Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (72)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

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

  • 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
  • ffprobe : print some basic information about avframe side data

    30 janvier 2014, par Michael Niedermayer
    ffprobe : print some basic information about avframe side data
    

    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/ffprobe.xsd
    • [DH] ffprobe.c
  • 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 ?