Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (65)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (4522)

  • fate/jpeg2000dec : add support for p0_10.j2k

    16 juin 2024, par Pierre-Anthony Lemieux
    fate/jpeg2000dec : add support for p0_10.j2k
    

    p0_10.j2k is one of the reference codestreams included in Rec. ITU-T T.803 | ISO/IEC 15444-4.
    Adding this test was made possible by commit 6f4a95cfb8e6ed97fdd1027251181caded44860f.

    • [DH] tests/fate/jpeg2000.mak
    • [DH] tests/ref/fate/jpeg2000dec-p0_10
  • lavu/pixdesc : handle xv30be in av_[read|write]_image_line

    4 décembre 2022, par Philip Langdale
    lavu/pixdesc : handle xv30be in av_read_image_line
    

    xv30be is an obnoxious format that I shouldn't have included in the
    first place. xv30 packs 3 10bit channels into 32bits and while our
    byte-oriented logic can handle Little Endian correctly, it cannot
    handle Big Endian. To avoid that, I marked xv30be as a bitstream
    format, but while that didn't produce FATE errors, it turns out that
    the existing read/write code silently produces incorrect results, which
    can be revealed via ubsan.

    In all likelyhood, the correct fix here is to remove the format. As
    this format is only used by Intel vaapi, it's only going to show up
    in LE form, so we could just drop the BE version. But I don't want to
    deal with creating a hole in the pixfmt list and all the weirdness that
    comes from that. Instead, I decided to write the correct read/write
    code for it.

    And that code isn't too bad, as long as it's specialised for this
    format, as the channels are all bit-aligned inside a 32bit word.

    • [DH] libavutil/pixdesc.c
  • avformat/avformat : Avoid including codec.h, frame.h

    2 septembre 2023, par Andreas Rheinhardt
    avformat/avformat : Avoid including codec.h, frame.h
    

    AVCodec is only ever used as an incomplete type (i.e. via a pointer
    to an AVCodec) in avformat.h and it is not really part of the core
    of avformat.h or libavformat ; almost none of our internal users
    make use of it (and none make use of hwcontext.h, which is implicitly
    included). So switch to use struct AVCodec, but continue to include
    codec.h for external users for compatibility.

    Also, do the same for AVFrame and frame.h, which is implicitly included
    by codec.h (via lavu/hwcontext.h).

    Also, remove an unnecessary inclusion of <time.h>.

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

    • [DH] libavdevice/alsa_enc.c
    • [DH] libavdevice/opengl_enc.c
    • [DH] libavdevice/pulse_audio_enc.c
    • [DH] libavdevice/xv.c
    • [DH] libavformat/asfdec_o.c
    • [DH] libavformat/avformat.c
    • [DH] libavformat/avformat.h
    • [DH] libavformat/dashdec.c
    • [DH] libavformat/dashenc.c
    • [DH] libavformat/dhav.c
    • [DH] libavformat/ftp.c
    • [DH] libavformat/hlsenc.c
    • [DH] libavformat/hlsplaylist.c
    • [DH] libavformat/http.c
    • [DH] libavformat/img2enc.c
    • [DH] libavformat/internal.h
    • [DH] libavformat/mlvdec.c
    • [DH] libavformat/mux.c
    • [DH] libavformat/mux.h
    • [DH] libavformat/mxfdec.c
    • [DH] libavformat/uncodedframecrcenc.c
    • [DH] libavformat/wavenc.c
    • [DH] libavformat/webmdashenc.c
    • [DH] libavformat/wtvdec.c
    • [DH] libavformat/yuv4mpegenc.c