Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (105)

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

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

Sur d’autres sites (16398)

  • h264-test : Remove unused DSP and AVCodec contexts and related init calls.

    30 janvier 2012, par Diego Biurrun

    h264-test : Remove unused DSP and AVCodec contexts and related init calls.

  • avcodec/h264_slice : Check picture structure before setting the related fields

    7 février 2015, par Michael Niedermayer
    avcodec/h264_slice : Check picture structure before setting the related fields
    

    This might fix a hypothetical race condition

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264_slice.c
  • How to put a text watermark on a video using ffmpeg command in android

    5 février 2016, par shivani

    I am trying to put watermark on the video file which i am compressing using ffmpeg library.

    What exactly is the command that i need to put to put a text watermark on the video file ??

    I have tried using this command :

    String commandStr = "ffmpeg -i " + inputpath
                       +" drawtext=fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text' -strict experimental -s " + str_resolution
                       + " -ac 2 -ar 44100 -b "+str_bitrate+" "
                       + outvidpath;

    After using this command the video does not get generated. What could possibly could go wrong in this command ??

    Please help ! Thanks in advance !