Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (19)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (1970)

  • Should I use FFmpeg or opencv to convert a video into a black and white by a C program ? [closed]

    9 février 2021, par Meganathan

    I want to convert a colored video clip into a black and white clip by a c program, Which one is best suitable for that purpose, FFMPEG or OPENCV ? I am new to video processing.

    


  • FFmpeg : Pure white image becomes gray after overlaying

    17 décembre 2019, par hanswim

    I am using FFmpeg to overlay a sticker image to another image. The problem is, the pure white sticker image becomes gray after overlaying. Here is my command :

    -i, input.jpg, -i, white.png, -filter_complex, [1]scale=162:63[v1];[0][v1]overlay=125:337[v2], -map, [v2], -map, 0:a?, output.jpg

    The input.jpg and the white.png are both pure white image. I create the pure white image by taking a screen shot of an empty website, and I confirm it’s pure white by Color Meter(RGB=255,255,255).

    After running the command, the output image :

    ffmpeg output image

    I have searched Google and tried many ways like -color_range 2, format=rgb24, -pix_fmt rgb24, but none work for me. (Maybe I haven’t use it in the right way.)

    Anyone can help me ? Thanks a lot !

  • How to dynamically adjust white box padding size with text on top

    22 décembre 2020, par scob

    I'm currently using PIL and a Python FFmpeg wrapper to create a white box with text on top of it :

    


    enter image description here

    


    I know text wrapping can be done using subtitles (which I'm fine with), but how can I make the padding automatically adjust size depending on how much text there is, using only the FFmpeg command-line ? Is it possible ?

    


    Using a Python wrapper and PIL is kinda inefficient for me, and I'd like to know how to do it via the command line.

    


    Thanks