Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (74)

  • 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" ;

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4144)

  • How to create transparent GIF using FFMPEG command ?

    21 janvier 2020, par Krupali Shingala

    I tried this command for create transaprent GIF, but created gif take black image always.

    "-y", "-start_number", "1", "-i", path + "%d.png", "-vf", "scale=480x240", "-preset", "ultrafast", gifpath
  • avfilter/vf_overlay : fix alpha blending for planar formats with a transparent background

    2 août 2017, par Marton Balint
    avfilter/vf_overlay : fix alpha blending for planar formats with a transparent background
    

    When the background had an alpha channel, the old code in blend_plane
    calculated premultiplied alpha from the destination plane colors instead of the
    destination alpha.

    Also the calculation of the output alpha should only happen after the color
    planes are already finished.

    Fixes output of :
    ffplay -f lavfi "testsrc2=alpha=32[a] ;color=black[b] ;[b][a]overlay[out0]"

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/vf_overlay.c
  • Give a video rounded transparent edges so that it can be overlayed on another video using FFMPEG

    15 octobre 2020, par Kevin Jasti

    Im trying to overlay a smaller video (200x200)on top of a bigger video (800x800).

    &#xA;&#xA;

    I've used the FFMPEG overlay filter to achieve this

    &#xA;&#xA;

        ffmpeg -i big.mp4 -vf "movie=small.mkv[clip2]; [in][clip2] overlay=1:5 [out]"  final.mp4&#xA;

    &#xA;&#xA;

    Challenge is that the smaller video needs its edges to be rounded.&#xA;I have tried working with alphaextract and alphamerge. The documentation on FFMPEG is sparse and im not sure how to go about it.

    &#xA;