Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (25)

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

  • How to read file from"/data/user/0com.package.name/files/ffmpeg" ? in Android ?

    4 septembre 2021, par Thriller Mobiles

    How to read file from "/data/user/0com.package.name/files/ffmpeg" in Android ? I'm using FFMPEG lib version 2.4.2 with com.github.hiteshsondhi88 this reference.

    


  • What does "all-yes" mean in ffmpeg Makefile

    22 septembre 2021, par FLT

    In ffmpeg Makefile,

    


    https://github.com/FFmpeg/FFmpeg/blob/master/Makefile#L37

    


    https://github.com/FFmpeg/FFmpeg/blob/master/Makefile#L189

    


    It defined phony targets "all" and "all-yes", but I can't find prerequisites and command of "all-yes" by searching whole ffmpeg directory. So can anyone help to explain what "all-yes" exactly means ?

    


  • cannot locate symbol "avpriv_pix_fmt_bps_avi"

    14 mars 2017, par S. Le Galloudec

    I’m developping an android application using ffmpeg. I’m trying to decode a rtsp stream, and i have a problem with a symbol.
    After i finally compiled ffmpeg with this tuto :
    https://github.com/WritingMinds/ffmpeg-android

    I used a code i found here : Receiving RTSP stream using FFMPEG library

    But i have a problem when i run my program. I got this error :

    java.lang.UnsatisfiedLinkError : dlopen failed : cannot locate symbol "avpriv_pix_fmt_bps_avi" referenced by "/data/app/com.example.local.test_ffmpeg-2/lib/arm/libnative-lib.so"...

    The thing is that i checked into my .a to see if i had the symbol so i did :

    nm libavcodec.a | grep avpriv_pix

    It returned :

    00000060 R avpriv_pix_fmt_bps_avi
    00000000 R avpriv_pix_fmt_bps_mov
            U avpriv_pix_fmt_bps_avi
            U avpriv_pix_fmt_bps_mov

    So it looks like i have the symbol, but the U after means undefined, so i’m really confused. I’m not sure if my compilation failed somewhere or if the problem comes from my program.

    I’m using ndk 14, if someone has some ideas, that would be great :)

    Best regards