Recherche avancée

Médias (91)

Autres articles (89)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (8205)

  • avcodec/mpegvideo_enc : Don't call av_frame_copy_props() unnecessarily

    5 octobre 2023, par Andreas Rheinhardt
    avcodec/mpegvideo_enc : Don't call av_frame_copy_props() unnecessarily
    

    It is unnecessary in case of user-supplied frames, because
    it happens directly after a av_frame_ref() with the same
    src and dst.

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

    • [DH] libavcodec/mpegvideo_enc.c
  • avcodec/huffyuvenc : Remove redundant call

    1er octobre 2022, par Andreas Rheinhardt
    avcodec/huffyuvenc : Remove redundant call
    

    All codecs here have the FF_CODEC_CAP_INIT_CLEANUP set,
    so ff_huffyuv_common_end() will be called automatically
    in encode_end() on error.

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

    • [DH] libavcodec/huffyuvenc.c
  • lavfi : do not call ff_filter_frame() with activate.

    24 décembre 2016, par Nicolas George
    lavfi : do not call ff_filter_frame() with activate.
    

    avfilter_graph_request_oldest() does work that should be done by
    either the filter or the application.

    The principle of this function, calling ff_request_frame() from
    outside the filter was always shaky. This version is less elegant
    since it requires making special cases for each filter, but it
    is more robust since it no longer calls ff_request_frame()
    directly without notifying the filter.

    Eventually, avfilter_graph_request_oldest() will be deprecated
    for a function to just run the graph.

    • [DH] libavfilter/avfiltergraph.c