Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (98)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6256)

  • avcodec/mips : Improve hevc uni weighted vert mc msa functions

    11 octobre 2017, par Kaustubh Raste
    avcodec/mips : Improve hevc uni weighted vert mc msa functions
    

    Pack the data to half word before clipping.
    Use immediate unsigned saturation for clip to max saving one vector register.

    Signed-off-by : Kaustubh Raste <kaustubh.raste@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/hevc_mc_uniw_msa.c
  • avcodec/mips : Improve hevc bi copy mc msa functions

    11 octobre 2017, par Kaustubh Raste
    avcodec/mips : Improve hevc bi copy mc msa functions
    

    Load the specific destination bytes instead of MSA load and pack.
    Use immediate unsigned saturation for clip to max saving one vector register.

    Signed-off-by : Kaustubh Raste <kaustubh.raste@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/hevc_mc_bi_msa.c
  • H264 to PES packetization

    24 octobre 2014, par Yarik

    I have Ti DaVinci h264 encoder and I want to pack its output frames to PES. The stream is in annex B format.
    I took the ffmpeg’s pes header writer and made something like this :

    void MediaPacket::writePesHeader(std::vector&lt; uint8_t >&amp; buffer)
    {
       int header_len, flags, len, val;
       uint8_t *q = buffer.data();

       *q++ = 0x00;
       *q++ = 0x00;
       *q++ = 0x01;
       *q++ = 0xe0;

       header_len = 0;
       flags      = 0;
       if (pts != UNKNOWN) {
           header_len += 5;
           flags      |= 0x80;
       }
       if (dts != UNKNOWN &amp;&amp; pts != UNKNOWN &amp;&amp; dts != pts) {
           header_len += 5;
           flags      |= 0x40;
       }

       len = 0;
       *q++ = len >> 8;
       *q++ = len;
       val  = 0x80;

       *q++ = val;
       *q++ = flags;
       *q++ = header_len;
       if (pts != UNKNOWN) {
           write_pts(q, flags >> 6, pts);
           q += 5;
       }
       if (dts != UNKNOWN &amp;&amp; pts != UNKNOWN &amp;&amp; dts != pts) {
           write_pts(q, 1, dts);
           q += 5;
       }
       buffer.resize(q-buffer.data());
    }

    static void write_pts(uint8_t *q, int fourbits, int64_t pts)
    {
       int val;

       val  = fourbits &lt;&lt; 4 | (((pts >> 30) &amp; 0x07) &lt;&lt; 1) | 1;
       *q++ = val;
       val  = (((pts >> 15) &amp; 0x7fff) &lt;&lt; 1) | 1;
       *q++ = val >> 8;
       *q++ = val;
       val  = (((pts) &amp; 0x7fff) &lt;&lt; 1) | 1;
       *q++ = val >> 8;
       *q++ = val;
    }

    Encoder’s output without headers is played fine with Totem player and avplay, but there is an error "could not find codec parameters" when headers are presented.
    What am I doing wrong ?