Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (57)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6135)

  • moving text in video with ffmpeg every 3 minute and 5 minute

    21 novembre 2018, par Amy Bomer

    I have a problem. I have found a tutorial on how to add text in videos using ffmpeg. but I want every 3 minute. I get the script only 10 second 1 time. I want 3 minute 1 time.

    my script :

    ffmpeg -i input.mp4 -filter:v drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSans.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16:y=h-line_h-100:x=w/10*mod(t\,10):enable=gt(mod(t\,20)\,10)" -codec:v libx264 -codec:a copy -y output.mp4

    source of : here

    help me setting always 3 minute and speed text 10 second

    please ask for an explanation from each script above and please help so that every 3 minute the text appears

    thank you

  • Audio in ffmpeg

    1er octobre 2020, par Konduri Sai Aditya

    I need to add audio as an input to below command, How can I achieve it

    


    ffmpeg -i test.png -i test.mp4 -y -filter_complex "[1:v]scale=1422:800[scale1],[scale1]rotate=0:c=black@0:ow=rotw(0):oh=roth(0)[rotate0],[0:v][rotate0]overlay=258.04:107.71[mediaoverlayout0],color=black@0:451x137[c1],[c1]setsar=1,drawtext=fontfile='/Windows/fonts/Peddana-Regular.ttf':text='ADITYA':fontsize=121.19999999999999:fontcolor=#1e8bc3:line_spacing=16.91,rotate=0:ow=rotw(0):oh=roth(0):c=black@0[rottext1],[mediaoverlayout0][rottext1]overlay=x=544.63:y=263.076:shortest=1" -pix_fmt yuv420p op.mp4


    


  • How to Create videos from txt with ffmpeg ?

    27 avril 2016, par thora.graham

    I want to create a list of videos from txt files.
    I find a code on stackoverflow

    ffmpeg -f lavfi -i color=c=blue:s=1024x768:d=150 -vf "drawtext=fontfile='C\:\\Windows\\Fonts\\arial.ttf':fontsize=45: fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:textfile=1.txt" output.mp4

    But its only can create 1 video at a time with the same duration.

    Is it possible to create several videos at a time ?

    Anyone could help me to create bat file which could create videos from the txt file(1 txt to 1 video), and also each video have the different length(randomly from 180s to 240s)..

    I create a folder named txt, which have 1.txt 2.txt. 3.txt, the save the videos to a folder named video, and the videos name will be 1.mp4 2.mp4 3.mp4

    Thanks...