Recherche avancée

Médias (91)

Autres articles (53)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (7547)

  • Need to set Multiple drawtext in same line one after the other. but unable to do so via FFMPEG command

    9 septembre 2019, par balpreet singh

    Hi Am trying to create a FFMPEG command for Text overlay on video that has partially text as bold. I am using the following command. but am unable to figure out how to pass the x position of 1st ending part.

    ffmpeg -i b.mp4 -vf "drawtext=fontfile=arial.ttf:text='Title of this video is ':fontcolor=blue:fontsize=20,drawtext=fontfile=ariali.ttf:text='How to have a healthy Life':fontcolor=yellow:fontsize=20:x=**<width of="of" 1st="1st" text="text">**" -c:v libx264 -c:a copy -movflags +faststart output.mp4 -y
    </width>
  • Green tint color shift converting RGBA to YUV420p ffmpeg libavcodec

    2 août 2017, par Michael B

    I was wondering someone could help. I’m currently taking converting RBGA bitmaps to YUV420p before encoding the frames with h264 codec and dumping the encoded packets to file successfully.

    I’m also able to playback the h264 video file in VLC. However, there seems to be a color shift which is more apparent where grey is actually light tint of screen. I’m used a an animation video as my example which is supposed to show a blue sky in the background, however after converting the image, I’m getting an orange sky background. Do you have any ideas how I can fix this please ?

    Do you happen to know if it’s possible to convert rgba to yuv BEFORE calling sws_scale and before encoding packet ?

  • ffmpeg how to put color overlay over video

    13 mai 2020, par flieks

    I want to put a color overlay (blue, red or green or hex value) over a video giving it a Instagram filter like effect.

    &#xA;&#xA;

    I think it should be in the lines of :

    &#xA;&#xA;

    ffmpeg -i video.mp4 -i "red.png" -filter_complex "blend=all_mode=&#x27;screen&#x27;:all_opacity=0.7" output.mp4&#xA;

    &#xA;&#xA;

    or maybe with all_mode=overlay

    &#xA;&#xA;

    But I get an error :

    &#xA;&#xA;

    First input link top parameters (SAR 0:1) do not match the corresponding second input link bottom parameters (SAR 1:1).&#xA;

    &#xA;&#xA;

    I also tried with lutrgb=r=1.5, but that didn't give it a red color (it takes the red away).

    &#xA;&#xA;

    What am i doing wrong ?

    &#xA;