Advanced search

Medias (0)

Tag: - Tags -/upload

No media matches your criterion on the site.

Other articles (62)

  • Le profil des utilisateurs

    12 April 2011, by

    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 April 2011, by

    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 November 2010, by

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

On other websites (4810)

  • libaom: Dont use aom_codec_av1_dx_algo.

    19 October 2021, by Matt Oliver
    libaom: Dont use aom_codec_av1_dx_algo.
    

    This fixes linking errors where variables cannot be correctly linked in from an external shared library such as with msvc (requires dllimport which is not used by libaom). Instead just call the function that returns the same variable.

    Signed-off-by: Matt Oliver <protogonoi@gmail.com>

    • [DH] libavcodec/libaomdec.c
  • RTMP: fix FD leak in rtmp_open()

    26 September 2014, by Alexander Drozdov
    RTMP: fix FD leak in rtmp_open()
    

    If we setup AVIO interrupt callback and it will be returns 1 on socket
    timeouts and we try to connect to non-existing streams on some servers
    (like nginx-rtmp) we got FD leak.

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

    • [DH] libavformat/rtmpproto.c
  • C++: Encoding H264 with FFmpeg, unable to set preset

    3 January 2023, by Mateusz Wójt

    I'm trying to encode H.264 movie with FFmpeg/libAV, when I try to set the codec preset the return code indicates an error:

    &#xA;

    ...&#xA;&#xA;mContext.codec = avcodec_find_encoder(AV_CODEC_ID_H264);&#xA;&#xA;mContext.stream = avformat_new_stream(mContext.format_context, nullptr);&#xA;mContext.stream->id = (int)(mContext.format_context->nb_streams - 1);&#xA;&#xA;mContext.codec_context = avcodec_alloc_context3(mContext.codec);&#xA;&#xA;int ret;&#xA;ret = av_opt_set(mContext.codec_context->priv_data, "preset", "medium", 0);&#xA;&#xA;// returns -1414549496&#xA;&#xA;...&#xA;

    &#xA;

    I ommited error checking for brevity in the example.

    &#xA;

    I tried setting preset to different values ("medium", "slow", "veryslow" etc.)

    &#xA;