Recherche avancée

Médias (91)

Autres articles (64)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5450)

  • Can't update app in store because of target api23 (no downgrade possible)

    4 mai 2016, par Thkru

    long story short :

    Problem :

    • apps uploaded with target api23 once, can’t be updated with lower target api
    • metaio can’t handle api23, due to a text relocations bug

    Idea so far :

    • replace the old libavcodec.so (arm & x86) by a newer version,
      but I can’t find any compiled version...

    PS : sure it’s dump to use a deprecated sdk and it has to be replaced sometime in the future, but for now I have to use it, as there’s a huge content and backend part that is used in the project.

    PPS : worst case idea is to upload the same app but with a different ID, api22 and AR features in the GooglePlay...and having two nearly identical apps... <_<

    Thanks a lot for every help ! :)

  • 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;

  • 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;
       }