Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

Sur d’autres sites (10048)

  • Revision a00dad39bd : No arf right before real scene cut. To reduce pulsing we now allow an arf just

    3 janvier 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    No arf right before real scene cut.

    To reduce pulsing we now allow an arf just before forced key frames
    and at the end of a clip or section (which may be stitched to
    another clip or section). However, this does not make sense for
    key frames arising from real scene cuts.

    Change from original patch reflects other recent changes in regard
    to alignment of gf/arf and kf groups.

    Change-Id : I074a91d1207e9b3e28085af982f6718aa599775f

  • Evolution #2815 (Nouveau) : Filtre ou syntaxe pour obtenir le chemin d’un logo

    10 août 2012, par Maïeul Rouquette

    (#LOGO_XX nous donne chemin du logo + timestamp [(#LOGO_XX**)] nous donne le nom du logo mais sans le chemin. À ma connaissance, il n’existe pas de syntaxe permettant d’avoir le chemin du logo sans le timestamp, sauf contorsion. Pour le moment le plus simple que j’ai (...)

  • ffmpeg add logo and photo and subtitles

    3 janvier 2021, par fedep11

    Hello i need add logo and photo and subtitles to a video.

    


    I have this code

    


    ffmpeg -t 00:00:08 -i "video.mp4" -i photo.jpg -i logo.png -filter_complex "overlay=2700:1850,subtitles=sub.ass:force_style='WrapStyle=0" -an -vcodec libx264 -shortest -r 25 -crf 17 -aspect 16/9 output.mp4


    


    i don't know how to add other filter to scale 50% and center the photo

    


    this is the code to add scaled photo to a video

    


    ffmpeg -t 8 -i "video" -i "photo.jpg" -filter_complex "[1][0]scale2ref=w=oh*mdar:h=ih/2[logo][video];[video][logo]overlay=(W-w)/2:(H-h)/2:format=auto,format=yuv420p" -vcodec libx264 -shortest -r 25 -crf 17 -aspect 16/9 "output.mp4"


    


    i need to combine both. Thanks