Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (61)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10098)

  • 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