Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (36)

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

  • 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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (4438)

  • avcodec/vvcdec : refact, unify vvc_deblock_subblock_bs_{horizontal, vertical}

    9 juin 2024, par Nuo Mi
    avcodec/vvcdec : refact, unify vvc_deblock_subblock_bs_horizontal, vertical
    
    • [DH] libavcodec/vvc/filter.c
  • How to resize a video with FFMPEG so that it has a max size, horizontal or vertical, without losing aspect ratio ?

    24 septembre 2024, par ipartola

    There are lots of questions on SO about resizing video but they all seem to assume orientation. Let's say that I am ingesting user videos and sometimes they are horizontal and sometimes vertical. I'd like to downscale them to at most 1920x1080 or 1080x1920, depending on orientation, but never upscale. I can't examine videos ahead of time so I am looking for a filter command that will do all this logic in one go. Anyone have anything like this handy ?

    


  • How can we merge two video in which one is horizontal resolution and other one is vertical resolution without stretching it using ffmpeg ?

    26 février 2021, par Rohan Patil

    I want to make an application that merge two video, in which one video is of vertical resolution and other one is of horizontal resolution. I managed to merge but it leads to stretching of video which ideally shouldn't happen. Does anyone have any idea to do this ? Thank you !

    



    command = new String[]{"-y", "-i", video1.mp4, "-i", video2.mp4,"-strict", "experimental", "-filter_complex",
            "[0:v]scale=1920x1080,setdar=4:3[v0];[1:v]scale=1920x1080,setdar=4:3[v1];[v0][0:a][v1][1:a] concat=n=2:v=1:a=1",
            "-ab", "48000", "-ac", "2", "-ar", "22050", "-s", "1920x1080", "-vcodec", "libx264", "-crf", "27", "-q", "4", "-preset", "ultrafast",output.mp4};