Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (74)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (14347)

  • Widescreen Converter for mp4 Video files [duplicate]

    25 février 2017, par seking

    i am looking for a possibility ( php / linux ) to convert any kind of mp4 video into a widescreen format... like a picture widescreen converter

    picture widescreen converted example

    The left and right part of the image does not need to be blurred.. it could be black as well. I don’t care.

    The program should recognize if the video is not 16:9 format and then convert it.

    Is this possible with ffmpeg ? I cannot find a solution for this but I have seen converted videos like that.

    EDIT : Found the solution !

  • Continuously play the gif on image using FFmpeg

    20 février 2020, par Shweta Patil

    I am trying to place multiple gif on image and save as gif using FFmpeg. I had achieved placing of multiple gif but all gif doesnot play continuously i.e Second gif repeat only once first gif finish and started again ..the second gif stop and start again only when first gif finishes.

    command_try[0]="-i";
       command_try[1]=input;
       command_try[2]="-i";
       command_try[3]=gifthumbnail;
       command_try[4]="-i";
       command_try[5]=gifthumbnail;
       command_try[6]="-i";
       command_try[7]=thumbnail;
       command_try[8]="-i";
       command_try[9]=thumbnail2;
       command_try[10]="-filter_complex";
       command_try[11]="[0:v]scale=0:0[base];[1:v]scale=300:-1[img1];[2:v]scale=720:-1290[img2];[3:v]scale=80:-1[img3];[4:v]scale=50:-1[img4];[img1]rotate=45:c=black@0:ow=rotw(45):oh=roth(45)[r1];[img2]rotate=0:c=black@0:ow=rotw(0):oh=roth(0)[r2];" +
               "[img3]rotate=0:c=black@0:ow=rotw(0):oh=roth(0)[r3];[img4]rotate=0:c=black@0:ow=rotw(0):oh=roth(0)[r4];[base][r1]overlay=100:70[tmp1];"+
               "[tmp1][r2]overlay=55:55[tmp2];[tmp2][r3]overlay=65:65[tmp3];[tmp3][r4]overlay=30:30";

       command_try[12]="-preset";
       command_try[13]="veryfast";
       command_try[14]="/storage/emulated/0/Pictures/imggif.gif";

    As I am recently started working on FFmpeg need help to play gif continuously independently.

  • How can I justify text using FFMPEG [closed]

    18 mai 2021, par Rahul Chokshi

    How can align text left and right like below example ?

    


       Hello FFMPEG
 Hello FFMPEG 
Hello FFMPEG 
 
Hello FFMPEG 
 Hello FFMPEG 
  Hello FFMPEG 
 

         Hello FFMPEG 
        Hello FFMPEG 


    


    I did tried below example, but it didn't work

    


    ffmpeg -i input.mp4 -vf "[in]drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='Hello World Ffmpeg':x=(w)/2:y=(h)/2, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hello':x=(w)/2:y=((h)/2)+25, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hel':x=(w)/2:y=((h)/2)+50[out]" -y test_out.mp4