Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (60)

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

  • Revision 50a85d1428 : Motion vector decoder cleanup. Change-Id : I7d3b2ef26aba3dfb1d5c83309aab2024e04e

    12 avril 2013, par Dmitry Kovalev

    Changed Paths : Modify /vp9/decoder/vp9_decodemv.c Motion vector decoder cleanup. Change-Id : I7d3b2ef26aba3dfb1d5c83309aab2024e04ee819

  • Revision b800ec1772 : Merge "Motion vector decoder cleanup." into experimental

    15 avril 2013, par Dmitry Kovalev

    Merge "Motion vector decoder cleanup." into experimental

  • Video with background image

    23 novembre 2012, par Gabriele Murari

    since my video doesn't respect the safe area i thought to make it smaller and fill the background area (the resulting video must be 720x576 px) with a still image.

    So i've created a movie out of a still image (loop_video.mpg) and then i tried to mix it with my input video using it as a watermark. Doing so i lose the audio stream that comes from my input video.

    here my code :

    ffmpeg -i loop_video.mpg -vf \"movie=input.mpg, scale=648:519 [wm];[in][wm] overlay=36:28 [out]\" -b:v 4096k -bufsize 8192k -minrate 2048k -maxrate 8192k -y -t 10 out.mpg

    So i tried to mix the two and keeping just the audio stream of my input video, and then watermarking again, but i have a significant delay between video and audio stream. It seems that the watermark starts after 1 second :

    ffmpeg -i loop_video.mpg -i input.mpg -map 0:0 -map 1:1 -vf \"movie=input.mpg, scale=648:519 [wm];[in][wm] overlay=36:28 [out]\" -b:v 4096k -bufsize 8192k -minrate 2048k -maxrate 8192k -y -t 10 out.mpg

    Someone could help me ?

    Thanks so much