Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (18)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6624)

  • libaom : Dont use aom_codec_av1_dx_algo.

    19 octobre 2021, par 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 septembre 2014, par 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 janvier 2023, par 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;