Recherche avancée

Médias (91)

Autres articles (53)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6175)

  • Revision 94f5491c46 : Removing half-variance asm functions which are not used. Corresponding C functi

    30 avril 2014, par Dmitry Kovalev

    Changed Paths :
     Delete /vp9/encoder/x86/vp9_subpel_variance_impl_sse2.asm


     Modify /vp9/encoder/x86/vp9_variance_impl_sse2.asm


     Modify /vp9/encoder/x86/vp9_variance_sse2.c


     Modify /vp9/vp9cx.mk



    Removing half-variance asm functions which are not used.

    Corresponding C functions were removed in
    I99695564a3aa9bc8c79ac0a551d257e2ff3ad3c3

    Change-Id : I50a5575065a7a9e41904eb2161afd739def927db

  • fate/exr : add test for pxr24 with half and uint32 channel

    17 novembre 2016, par Martin Vignali
    fate/exr : add test for pxr24 with half and uint32 channel
    

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] tests/fate/image.mak
    • [DH] tests/ref/fate/exr-rgb-scanline-pxr24-half-uint32-13x9
  • How to copy the AVPicture that are received from av_read_frame. What is the right approach ?

    23 mai 2014, par Whoami

    I have been trying to write a rtsp player in android. I am new to it. and wanted to know how to store the packet retrieved from av_read_frame for further usage.
    [eg. different thread to decode it ].

    while (1)
    {

    av_read_frame(pFormatCtx, &amp;packet) >= 0) {

    if (packet.stream_index == videoStream) {
              sendPacketToLInkedList ( packet);
      }  



    sendPacketToLinkedList (AVPacket *pkt)
    {

     AVPacket *refPacket;
     refPacket = pkt;    //  How log will it be valid ??
    }

    I just wanted to know how long the packet retrieved from av_read_frame is valid ?..