Recherche avancée

Médias (91)

Autres articles (18)

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

  • Revision 2dc7f506d4 : Merge "Fix a problem of using an uninitialized parameter"

    30 mai 2014, par Yaowu Xu

    Merge "Fix a problem of using an uninitialized parameter"

  • Anomalie #4426 (Fermé) : Le logo de certains plugins ne s’affichent pas dans la page "Rechercher e...

    26 janvier 2020, par b b

    Tu peux le trouver depuis ecrire/ ?exec=depots qui te mènera vers https://plugins.spip.net/depots/principal.xml

  • Problem while building libffmpeg.so from ffmpeg sources (undefined symbol : avcodec_version)

    10 octobre 2023, par serggt1

    I'm trying to build libffmpeg.so shared library from sources on Linux. Sources are here FFmpeg.git.

    


    I run

    


    ./configure
make -j4

gcc -shared \
    libavcodec/libavcodec.a \
    libavdevice/libavdevice.a \
    libavfilter/libavfilter.a \
    libavformat/libavformat.a \
    libavutil/libavutil.a \
    libswresample/libswresample.a \
    libswscale/libswscale.a \
    -o libffmpeg.so


    


    The problem is the resulting libffmpeg.so is only 15 KB and says

    


    dlsym fail : /opt/yandex/browser/libffmpeg.so: undefined symbol: avcodec_version


    


    What do I wrong and how to link the library in correct way ?

    


    UPD :

    


    Now trying with this :

    


    ./configure --enable-pic --disable-programs  --enable-gpl --enable-version3 --enable-nonfree

make -j4

ld \
    -rpath-link=/usr/lib \
    -L/usr/lib \
    -L/lib \
    --library=c --library=m --library=z --library=dl --library=log \
    -soname libffmpeg.so -shared -nostdlib -Bsymbolic --whole-archive --no-undefined \
    libavcodec/libavcodec.a \
    libavdevice/libavdevice.a \
    libavfilter/libavfilter.a \
    libavformat/libavformat.a \
    libavutil/libavutil.a \
    libswresample/libswresample.a \
    libswscale/libswscale.a \
    -o libffmpeg.so


    


    Error is ld: cannot find -lc: No such file or directory