Recherche avancée

Médias (91)

Autres articles (56)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7851)

  • 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;