Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (27)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5577)

  • ffmpeg : smooth, stable timelapse videos from normal speed videos

    18 mars 2015, par est

    For a one hour dash cam video in normal speed, is it possible to create a smooth timelapse video from it ?

    Most tutorials online I found about "timelapse + ffmpeg" are with static jpeg files combined into a timelapse video. These often result jiggle between frames, are the any specific parameters which would make the video looking very smooth & stable ?

    Should I just setpts=0.5*PTS for the trick ? Any must-have or little-known tricks ?

  • FFMPEG curtain effect slideshow from images

    15 janvier 2020, par Atta

    I have bunch of images that i have to convert to slideshow with curtain effect. currently i am running this command that convert images to video.

    ffmpeg -r 1/5 -i img%d.png -c:v libx264 -vf "fps=25,format=yuv420p" video.mp4

    But how to achieve this kind of effect with ffmpeg. Image link Required result

    I searched online but not found any solution. I have clue of alpha mask but no idea how to use it for such result.

  • FFMPEG stream desktop to youtube

    3 juillet 2018, par user8222409

    There are tutorials out there on how to stream to youtube using ffmpeg, and I have that part of the code done.
    However, I do not know how to stream the desktop in ffmpeg. The tutorials online only show usage of web cams. Anyway, What software do I use to capture the screen and stream using ffmpeg.
    Can I do this natively in ffmpeg. If so, how ?

    what I have so far is

    ffmpeg -re -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -f h264 -i pipe:0 -c:v copy -c:a aac -ab 128k -g 40 -strict experimental -f flv -r 30 rtmp://a.rtmp.youtube.com/live2/$1

    where the $1 is a command line param.