Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (45)

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

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (9067)

  • Drawing dynamic text on video stream

    15 octobre 2017, par Alex Maximov

    I’m trying to change text dynamically every 5 minutes on my live video stream
    This is the argument im using :

    -vf "drawtext=fontsize=40:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"

    I tried ’c’ in the FFMPEG console windows but I can’t get it right, I always get a parse error.
    Is there an example of how to use this options ?

    Thanks.

  • Add text to video use FFmpeg

    4 février 2023, par Sungoat

    Can someone write me a code to insert text into a video like this.
I used chatgpt to write this code but after rendering it crashed :
ffmpeg -i "F:/Test/video.mp4" -vf "drawtext=fontfile=/path/to/Montserrat.ttf:text='Get free Robux\nby click link below':fontcolor=white:fontsize=35:box=1:boxcolor=black@0.5:boxborderw=5:x=(w-text_w)/2:y=10" -codec:a copy "F:/Tested/output.mp4" 
Incomplete text
Video I edit with software

    


    Please write me the code to insert text into the video like image 2

    


  • Creating text overlay like tiktok on a video in flutter [closed]

    25 septembre 2020, par Sarthak Singhal

    I am trying to create an app in which user can add text on a video like the given image.
The user should be able to move the text container anywhere on the screen, resize it, and rotate it also.
When this is done, the text widget should be merged on the video.

    


    enter image description here

    


    For now I have used Stack to add elements and let user play with them.
I want to know how to merge this text along with the background color with the video and that too for a specific time frame.