Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (53)

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

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6883)

  • Revision 1ebf52df2c : Common encode/decode function to get reference frame Replaced encoder and decod

    8 août 2014, par Adrian Grange

    Changed Paths :
     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/decoder/vp9_decoder.h


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/vp9_cx_iface.c


     Modify /vp9/vp9_dx_iface.c



    Common encode/decode function to get reference frame

    Replaced encoder and decoder functions to get a pointer
    to a reference frame with a common function, vp9_get_ref_frame,
    and simplified it.

    Change-Id : Icb206fcce8caace3bfd1db3dbfa318dde79043ee

  • ffmpeg : fix streamcopy with side data

    13 août 2014, par Christophe Gisquet
    ffmpeg : fix streamcopy with side data
    

    The issue is that, when the main packet data buffer is changed, streamcopy
    uses a temporary new packet to store that buffer, frees the old packet, and
    replace it with the new packet.

    However, in doing so, it forgets about the side data, which gets freed, but
    is still needed and referenced. Then, when the packet gets freed again in
    the normal code path, it attempts to free its side data which has already
    been freed.

    Therefore, simply avoid the first free on side data by removing that side
    data from the packet.

    Fixes ticket #3773.

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

    • [DH] ffmpeg.c
  • Revision 3cffa0c74e : Move vp9_thread.* to common. Prepare for frame parallel decoding, the reference

    7 juillet 2014, par hkuang

    Changed Paths :
     Modify /test/vp9_thread_test.cc


     Add /vp9/common/vp9_thread.c
    (from /vp9/decoder/vp9_thread.c
    :10aa23f751069fe464fbc3c0e35dcf9294f055f7)
     Add /vp9/common/vp9_thread.h
    (from /vp9/decoder/vp9_thread.h
    :10aa23f751069fe464fbc3c0e35dcf9294f055f7)
     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_decoder.h


     Modify /vp9/decoder/vp9_dthread.h


     Delete /vp9/decoder/vp9_thread.c


     Delete /vp9/decoder/vp9_thread.h


     Modify /vp9/vp9_common.mk


     Modify /vp9/vp9dx.mk



    Move vp9_thread.* to common.

    Prepare for frame parallel decoding, the reference count buffers
    need to be protected by mutex. Move vp9_thread.* to common
    folder so that those buffers could use cross-platform mutex
    from vp9_thread.*.

    (cherry picked from commit 337e8015c9deaf8ab7e8d0c3c132160a77dd1590)

    Change-Id : I0587a08447925f4554d7788686a31483c2ae3f37