Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (107)

  • 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

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

Sur d’autres sites (9507)

  • Compiling ffmpeg+libx264 for ios with sdk 4.3

    20 juin 2012, par ArchiButtle

    I want to compile FFMPEG with libx264 for iOS with SDK4.3. Scripts i found were for previous sdk version. Since 4.3 version, gcc is replace with llvm+clang so they didn't work.
    I edited script and i managed to compile for mac OS. But cross-compiling (armv6 & armv7) didn't work.
    Could someone help me ?

  • Compiling ffmpeg+libx264 for ios with sdk 4.3

    20 juin 2012, par ArchiButtle

    I want to compile FFMPEG with libx264 for iOS with SDK4.3. Scripts i found were for previous sdk version. Since 4.3 version, gcc is replace with llvm+clang so they didn't work.
    I edited script and i managed to compile for mac OS. But cross-compiling (armv6 & armv7) didn't work.
    Could someone help me ?

  • Problem stacking pictures with different dimensions using ffmpeg

    24 août 2022, par Alaa AbuZarifa

    I want to stack several images either horizontally or vertically using FFmpeg.

    


    Everything works out well until the pictures have different hight in case of horizontal stacking or different width in case of vertical stacking.

    


    After some searching, I understand filtering in FFmpeg requests all input files to have the same dimension. Now, most of the suggestions to fix the issue are by using a scale to match all pictures.

    


    I don't want to alter the original dimensions of the pictures, I rather have a black or white color to fill the extra space.

    


    just like this picture :

    


    enter image description here

    


    how can I accomplish this ?

    


    My Command :

    


    -y -i img1.jpg -i img2.jpg -i img3.jpg -filter_complex [0][1][2]vstack=inputs=3 -preset fast output_img.jpg