Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (50)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8348)

  • avformat/udp : redesign threaded udp tx code

    25 mai 2016, par Michael Niedermayer
    avformat/udp : redesign threaded udp tx code
    

    This fixes partially completed send()
    Avoids holding the mutex during send()
    fixes race conditions in error handling
    removes copied non thread specific blocking code
    Fixes deadlocks on closure
    Fixes data loss on closure

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/udp.c
  • Applying two filters (Showwaves and Drawtext) at once with FFMPEG

    25 novembre 2018, par georgmann

    I use this command for my video :

    ffmpeg -i input.mp3 -i input.mp4 -y -ss 00:00:00 -t 00:00:10 -filter_complex "[0:a]showwaves=s=1920x175:colors=Yellow:mode=cline,colorkey=0x000000:0.01:0.1,format=yuva420p[v];[1:v][v]overlay=0:800[outv]" -map "[outv]" -pix_fmt yuv420p -map 0:a -c:v libx264 -c:a copy -shortest output.mp4

    and this command to the video :

    ffmpeg -i input.mp4 -y -ss 00:00:00 -t 00:00:10 -vf drawtext="fontfile=/path/to/font.ttf: text='My Text': fontcolor=white: fontsize=74: box=1: boxcolor=black@0.5: boxborderw=5: x=(w-text_w)/2: y=(h-text_h)/2" -c:v libx264 -c:a copy -shortest output.mp4

    I want to combine these two command in one command. I see this question and try several times without success.

  • How to move texts horizontally and vertically using ffmpeg

    1er mai 2015, par Kiran Kumar Dash

    I am using php as the scripting language and ffmpeg framework for video processing.

    I am a beginner and at current stage I am successfully able to process videos, creating video from images,processing audio and add text overlay using drawtext.

    But now my doubt is how can I move text on my video horizontally and vertically using ffmpeg commands.

    And is it possible to do much more than that like applying effects to text with ffmpeg and if not what other framework can be used to do such animation ?

    &lt;?php $ffmpeg= "/home/irank/bin/ffmpeg";
    echo shell_exec(" $ffmpeg -i \"/var/www/html/fftest/getthumbnail/video/imageaudio6.avi\"
    -vf drawtext=\"fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf:
    text='Test Text':\ x=100: y=50: fontsize=24: fontcolor=yellow@0.2: box=1:
    boxcolor=red@0.2\" -acodec copy \"/var/www/html/fftest/getthumbnail/output/textoverlay2.wmv\"");
    ?>