Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (81)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (9063)

  • avcodec/libxevd : Remove FF_CODEC_CAP_SETS_PKT_DTS cap

    27 février 2024, par Andreas Rheinhardt
    avcodec/libxevd : Remove FF_CODEC_CAP_SETS_PKT_DTS cap
    

    This decoder implements the receive_frame API ; such decoders
    always have to set the pkt_dts field themselves and the avcodec
    test checks for this.

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

    • [DH] libavcodec/libxevd.c
  • avcodec/mpegvideo_enc : Don't reset statistics twice

    19 mars, par Andreas Rheinhardt
    avcodec/mpegvideo_enc : Don't reset statistics twice
    

    This happens currently for the non-main slice contexts.
    But these variables get reset at the start of encode_thread()
    anyway for all slices, so this is unnecessary.

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

    • [DH] libavcodec/mpegvideo_enc.c
  • avcodec/iff : Use unsigned to avoid compiler warning

    11 juillet 2022, par Andreas Rheinhardt
    avcodec/iff : Use unsigned to avoid compiler warning
    

    GCC 12 apparently believes that negative palette sizes are
    possible (they are not, as this has already been checked during
    init) and therefore emits a -Wstringop-overflow= for the memcpy.
    Using unsigned avoids this.
    (To be honest, there might be a compiler bug involved.)

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

    • [DH] libavcodec/iff.c