Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (37)

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

  • dnxhddec : Decode and use interlace mb flag

    26 septembre 2015, par Christophe Gisquet
    dnxhddec : Decode and use interlace mb flag
    

    This bit is 1 in some samples, and seems to coincide with interlaced
    mbs and CID1260. 2008 specs do not know about it, and maintain qscale
    is 11 bits. This looks oversized, but may help larger bitdepths.

    Currently, it leads to an obviously incorrect qscale value, meaning
    its syntax is shifted by 1. However, reading 11 bits also leads to
    obviously incorrect decoding : qscale seems to be 10 bits.

    However, as most profiles still have 11bits qscale, the feature is
    restricted to the CID1260 profile (this flag is dependent on
    a higher-level flag located in the header).

    The encoder writes 12 bits of syntax, last and first bits always 0,
    which is now somewhat inconsistent with the decoder, but ends up with
    the same effect (progressive + reserved bit).

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavcodec/dnxhddec.c
  • How to fix "fatal error : x.264 no such file or directory"

    24 avril 2019, par user11340790

    I wrote a makefile which builds a C program attaching the x.264 header. After trying to execute the makefile in terminal I receive the fatal error :
    "example.c line [line of #include ] x264.h no such file or directory". Below you can find the C code and makefile (located in the same folder, the library - containing the x264.pc file- is in the folder libx264 of the parent folder). I would be very grateful if you could help with the linkage.

    Makefile :

       CC = gcc

       CFLAGS = -c -Wall `export PKG_CONFIG_PATH=../libx264 &amp;&amp; pkg-config            --cflags x264`
       LDFLAGS = -static `export PKG_CONFIG_PATH=../libx264 &amp;&amp; pkg-config --libs --static libx264`


       all: Release

       Debug: CFLAGS += -g
       Debug: example

       Release: example

       test: example.o
           $(CC) -o example example.o $(LDFLAGS)

       test.o: example.c
           $(CC) $(CFLAGS) example.c -o example.o

       clean:
           rm -f example.o example

    example.c code

       #include
       #include
       int main( int argc, char **argv )
       {
           int width, height;
            return 0;
       }
  • How to fix "fatal error : x.264 no such file or directory"

    24 avril 2019, par user11340790

    I wrote a makefile which builds a C program attaching the x.264 header. After trying to execute the makefile in terminal I receive the fatal error :&#xA;"example.c line [line of #include ] x264.h no such file or directory". Below you can find the C code and makefile (located in the same folder, the library - containing the x264.pc file- is in the folder libx264 of the parent folder). I would be very grateful if you could help with the linkage.

    &#xA;&#xA;

    Makefile :

    &#xA;&#xA;

        CC = gcc&#xA;&#xA;    CFLAGS = -c -Wall `export PKG_CONFIG_PATH=../libx264 &amp;&amp; pkg-config            --cflags x264`&#xA;    LDFLAGS = -static `export PKG_CONFIG_PATH=../libx264 &amp;&amp; pkg-config --libs --static libx264`&#xA;&#xA;&#xA;    all: Release&#xA;&#xA;    Debug: CFLAGS &#x2B;= -g&#xA;    Debug: example&#xA;&#xA;    Release: example&#xA;&#xA;    test: example.o&#xA;        $(CC) -o example example.o $(LDFLAGS)&#xA;&#xA;    test.o: example.c&#xA;        $(CC) $(CFLAGS) example.c -o example.o&#xA;&#xA;    clean:&#xA;        rm -f example.o example&#xA;

    &#xA;&#xA;

    example.c code

    &#xA;&#xA;

        #include &#xA;    #include &#xA;    int main( int argc, char **argv )&#xA;    {&#xA;        int width, height;&#xA;         return 0;&#xA;    }&#xA;

    &#xA;