Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (77)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (10522)

  • ffmpeg produces video of 0 seconds on adding text

    7 mars 2018, par Anuj TBE

    I’m using ffmpeg to add text over video.

    ffmpeg -i /path_to_video_input/1520425717.mp4 -vf\
    "drawtext=text='This is text':x=10:y=H-th-10:fontsize=42:fontcolor=#FFFFFF"\
    /path_to_video_input/1520425717.mp4 -y

    Text is added to the video but video length is reduced to 0 seconds and shows only one frame.

    How to keep the length of video as original and add the text throughout the video ?

  • ffmpeg wite text over video not working [on hold]

    29 décembre 2017, par ayyanar pms

    Im using ffmpeg in php to wite text in video,

    using binaries,

      ffmpeg.exe
      ffplay.exe
      ffprobe.exe

    im using like this,

    $ip = dirname(__FILE__)."/input.mp4";
    $font = dirname(__FILE__)."/arial.ttf";
    $op = dirname(__FILE__)."/output.mp4";
    $text = "stack overflow";

    $process = exec("ffmpeg -i $ip -vf drawtext='$font': \text=$text: fontcolor=white: fontsize=24: box=1: boxcolor=black@0.5: \boxborderw=5: x=(w-text_w)/2: y=(h-text_h)/2 -codec:a copy $op");

    This is working in cmd its working, whether its path issue ? please guide me.

  • Scrolling text in a video with ffmpeg

    12 avril 2014, par NickName

    I am trying to put a textline from right to left in a video with ffmpeg but it is not working.

    My command is :

    ffmpeg -i input.avi -vf drawtext="fontfile=C\\:/Windows/Fonts/arial.ttf:text='YOUR TEXT HERE':fontcolor=white@1.0:fontsize=40:y=h-h/2:x=t*50" -y output.avi

    Thank you in Advance...