Recherche avancée

Médias (91)

Autres articles (71)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Video encoder with low CPU usage on Atom 230

    8 février 2016, par Alexandr Zarubkin

    What are my options for screen capturing on Atom 230 CPU that will result in reasonably low CPU usage ?
    I’m using ffmpeg and would like to leave CPU power to other applications while recording a screencast without lags.
    Maybe there’s hardware support for certain codec ?

  • libavutil : Add av_clip_intp2

    20 février 2015, par Peter Meerwald
    libavutil : Add av_clip_intp2
    

    there already is a function, av_clip_uintp2() that clips a signed integer
    to an unsigned power-of-two range, i.e. 0,2^p-1

    this patch adds a function av_clip_intp2() that clips a signed integer
    to a signed power-of-two range, i.e. -(2^p),(2^p-1)

    the new function can be used as a special case for av_clip(), e.g.
    av_clip(x, -8192, 8191) can be rewritten as av_clip_intp2(x, 13)

    there are ARM instructions, usat and ssat resp., which map nicely to these
    functions (see next patch)

    Signed-off-by : Peter Meerwald <pmeerw@pmeerw.net>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/common.h
  • How to add watermark text scrollable using ffmpeg vertically from right top to bottom

    22 juillet 2015, par Jeetendra

    Am using ffmpeg to transcode the video with text watermark. Below is my command that I am using but it scrolls the text bottom left to right.

    ffmpeg -i /usr/home/test.mp4 -vf "drawbox=x=iw-42:y=0:w=42:h=ih:color=black@0.5:t=80,drawtext=fontfile=/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16: y=(mod(2*n\,h+th)-th):x=w-tw-10" -codec:v libx264 -codec:a copy -strict -2 /usr/home/out.mp4

    But I want vertical scrolling top to bottom.

    Can anyone help in this.

    Thanks in advance.