Recherche avancée

Médias (91)

Autres articles (76)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

  • How to add a text containing the dynamic current time of the video into video,when finished catching each frame using ffmpeg ?

    12 septembre 2016, par breakHeart

    How to solve it ? I hope to solve it by using a function, no command. I hope someone can help me ?

  • Overlay Video on Video FFMPEG

    9 août 2017, par user3354787

    I have found a link explaining how to do this, however I do not know how to do it with a streaming video. FFmpeg - Overlay one video onto another video ?

    I am running a robot that uses FFMPEg to send straming video to letsrobot.tv You can see my bot on the website called patton II. I wnated to overlay a video HUD on the stream. If you can help me with a step by step that would be great. Sorry for such an open ended question but I am new to this whole thing but i will correct it or answer anything you need in order for you to help me

       overlayCommand = '-vf dynoverlay=overlayfile=/home/pi/runmyrobot/images/hud.png:check_interval=500'
    videoCommandLine = '/usr/local/bin/ffmpeg -f v4l2 -framerate 25 -video_size 640x480 -i /dev/video%s %s -f mpegts -codec:v mpeg1video -s 640x480 -b:v %dk -bf 0 -muxdelay 0.001 %s http://%s:%s/hello/640/480/' % (deviceAnswer, rotationOption, args.kbps, overlayCommand, server, videoPort)
    audioCommandLine = '/usr/local/bin/ffmpeg -f alsa -ar 44100 -i hw:1 -ac 2 -f mpegts -codec:a mp2 -b:a 32k -muxdelay 0.001 http://%s:%s/hello/640/480/' % (server, audioPort)
  • How to overlay a video on another video and also fade in a PNG

    3 février 2019, par Imonaboat

    I am looking to overlay a video on top of another video and then also add a fade in and fade out PNG.

    I have the current command which works perfectly in merging two video files one on top of the other.

    ffmpeg -y -i output.mp4 -i transparent.mp4 -filter_complex "[1:v][0:v]scale2ref[ua][b];[ua]setsar=1,format=yuva444p,colorchannelmixer=aa=.7[u];[b][u]overlay=eof_action=pass[v]" -map [v] awsome.mp4

    I need to now add a PNG on it as well that fades in at 1s and fades out at 9.5s.

    Appreciate any and all advice.