Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Revision 33897 : Heu .... merci RastaPopoulos

    22 décembre 2009, par shnoulle@… — Log

    Heu .... merci RastaPopoulos ?

  • Cannot install Libtool library used but `LIBTOOL' is undefined trying to install ffmpeg

    23 décembre 2014, par user1503606

    I am trying to install ffmpeg on centos following this tutorial.

    http://ffmpeg.org/trac/ffmpeg/wiki/CentosCompilationGuide

    but when i run.

    cd ~/ffmpeg_sources
    git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git
    cd fdk-aac
    autoreconf -fiv
    ./configure --prefix="$HOME/ffmpeg_build" --disable-shared
    make
    make install
    make distclean

    I get the following error.

    cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
    Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
    make: *** [Makefile.in] Error 1
    [root@worldnewstranslate fdk-aac]# make install
    cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
    Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
    make: *** [Makefile.in] Error 1

    I cannot get it to work for the life of me any help please why i maybe getting these errors.

    Thanks

  • FFmpeg concat in android

    13 avril 2018, par fvn

    I have trying to concat multiple videos (mp4 or mov)on Android Studio using FFMPEG. I have managed to get vidoes in an arrayList and their path like this :

    private List<string> getSelectedVideos(Intent data) {

           List<string> result = new ArrayList&lt;>();

           ClipData clipData = data.getClipData();
           if(clipData != null) {
               for(int i=0;icode></string></string>

    I have looked online on how to concat vidoes using FFMPEG https://trac.ffmpeg.org/wiki/Concatenate

    However I’m not sure how to do it using Android studio. Any help would be much appreciated.