Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (33)

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

  • 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

Sur d’autres sites (3226)

  • How to alter video to show ticker in java

    7 mars 2014, par Nikita

    I want to alter the video to show ticker
    using java.I have used Xuggler to alter the video added image at the bottom of the video and showing names on that image but want to move that text.i will add the ticker to video & save it.Not able to find a way to show the names moving as marquee tag.Any help will be appreciated.

  • Shifting overlay position every x seconds

    11 novembre 2019, par David Tran

    Currently, I add a watermark to the bottom right of my video to prevent others from republishing it. However, they blur the watermark so I’m thinking of adding a moving watermark that changes its position every x seconds.

    Below is my current ffmpeg command :

    ffmpeg -i input.mp4 -i logo.png -filter_complex "[1][0]scale2ref=iw/4:ow*90/272[wm][vid];[vid][wm]overlay=W-w-W*10/100:H-h-H*5/100" -preset veryfast output.mp4

    How can I make the watermark position from the bottom right to top right, to top left, and bottom left every 30 seconds ? Thank you.

  • how to draw n number of rectangles on video with ffmpeg

    29 octobre 2017, par taltal115

    Im trying to create a video for testing framrate html5 players
    this video need to contain rectanges for each frame for the first 10 frames
    i need it to be dynamic.

    for now i have the following command :

    ffmpeg -loop 1 -i black.png -c:v libx264 -t 15 -r 30 -vcodec h264 -pix_fmt yuv420p \
          -vf "[in]drawtext=fontfile=/usr/share/fonts/open-sans/OpenSans-Regular.ttf : text=%{n}:x=(w-tw): y=h-(lh): fontcolor=white: box=1: boxcolor=0x00000099, \
               drawbox=x='mod(t\,10)*32':w=16:h=16:color=white@1[out]" \
          -y out123.mp4

    again im trying to draw a rectangle for each frame in the to image like so :
    x=16*0,x=16*1,x=16*2...

    the only mving pate here is the x param and its not moving
    can any one help ?