Recherche avancée

Médias (91)

Autres articles (50)

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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

Sur d’autres sites (6299)

  • FFMPEG - Moving text to appear every 'X' Seconds

    9 octobre 2018, par Kevin

    This is a ffmpeg command for moving text (left to right)

    ffmpeg -i input.mp4 -vf drawtext="fontfile=/path/to/fonts/FreeSans.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16:y=h-line_h-100:x=(2*n)-tw" -codec:v libx264 -codec:a copy output.mp4

    And I would like to know how to make the moving text to start after ’X’ seconds and appear every ’X’ seconds ?

  • ffmpeg add one image over another to generate new image

    16 juin 2023, par Akshay Chouhan

    I am new to using ffmpeg and need to generate an image by combining two images in ffmpeg. My code is :

    


    ffmpeg -i https://picsum.photos/200/300 -i profileImage -filter_complex '[0:v][1:v]overlay=100:200' -frames:v 1 output.png


    


    After executing this code, I receive the following errors :

    


    The specified filename output.png does not contain an image sequence pattern or a pattern is invalid.
[image2 @ 0x77a2593180] Use a pattern such as %03d for an image sequence or use the -update option (with -frames:v 1 if needed) to write a single image.


    


    Please note that output.png is replaced with the correct output file path. How can I fix this issue ?

    


  • How do I batch add text watermark to many videos all at once using FFMPEG ?

    28 avril 2023, par KEVIN

    I have the following batch file to add watermarks :

    


    ffmpeg -i "video.mp4" -vf "drawtext=fontfile=/windows/fonts/arial.ttf:fontsize=24:fontcolor=red:x=w-tw-10:y=h-th-10:text='insert text here'" -c:a copy "video_watermark.mp4" && move /y "video_watermark.mp4" "video.mp4"


    


    This script actually worked and I was able to add a text watermark to the bottom right of the video while overwriting the original file.

    


    How do I add text to 20 or 30 videos all at once using the same settings in the script ?