Recherche avancée

Médias (91)

Autres articles (100)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (9939)

  • How to encode a .wmv file that XNA DirectShow will play properly ?

    19 juin 2013, par Mr Pie

    I'm playing around with XNA DirectShow to stream a video from a file rather than loading it into my project (I'm fully aware of the XNA MediaPlayer class by the way). It plays the sample video it came with no problem. When I try to make my own .wmv from a series of PNG files I have using ffmpeg the video plays but is all blue (should be mostly yellow). Pixel format wrong ? Wrong codec ? I'm certainly no expert in these waters..

    The sample video is a VC-1 WMV3 apparantly, and I don't think I can replicate that ? What encoding/codec/fileformat should I be using ?

    Also ! If transparent video background is possible, that would be amazing. Is it ?

  • ffmpeg set padding with different top and bottom bar background colors

    29 juin 2019, par Rehan

    Using this ffmpeg command to set the padding color :

    pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2:black"

    I get this result with command

    but I want different color for top for example green
    and for bottom I want to set blue color.

    Desired output is this

    Appreciate the help.

  • How can I justify text using FFMPEG [closed]

    18 mai 2021, par Rahul Chokshi

    How can align text left and right like below example ?

    


       Hello FFMPEG
 Hello FFMPEG 
Hello FFMPEG 
 
Hello FFMPEG 
 Hello FFMPEG 
  Hello FFMPEG 
 

         Hello FFMPEG 
        Hello FFMPEG 


    


    I did tried below example, but it didn't work

    


    ffmpeg -i input.mp4 -vf "[in]drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='Hello World Ffmpeg':x=(w)/2:y=(h)/2, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hello':x=(w)/2:y=((h)/2)+25, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hel':x=(w)/2:y=((h)/2)+50[out]" -y test_out.mp4