Recherche avancée

Médias (91)

Autres articles (64)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (14506)

  • avformat/matroskaenc : Cosmetics and typo

    20 avril 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Cosmetics and typo
    

    Fixes intendation, whitespace, a typo and renames a variable
    (dyn_bc->cluster_bc) to make its meaning clearer and to bring
    it more in line with the naming of similar variables.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • FFMPEG Command to format videos to TikTok's specs ?

    8 juin 2021, par Christopher Sparks

    I'm trying upload a video exported by windows video editor to tiktok. It's a .mp4 file, and while it does upload, it isn't "TikTok'd", meaning, it only takes up the middle of screen. I was wondering what the ffmpeg command would be to output a video to TikToks specs.

    &#xA;

    Here's how it currently looks.

    &#xA;

    TikTok bad format

    &#xA;

    And here's how I want it to look.

    &#xA;

    enter image description here

    &#xA;

  • Use palette when using FFMpeg overlay

    16 avril 2017, par nbrogi

    I’m trying to add an overlay to an animated GIF with FFMpeg.

    It works, but the quality is pretty dismal. Basically, I’m unable to use the palette that I generate, and that leads to a lot of dither. The main GIF (meaning, not the overlay) is also very low resolution.

    I would also like to apply opacity to the watermark (and at one point that worked, too), but that’s a plus.

    This is what I have :

    ffmpeg -v error -i image.gif -vf 'palettegen' palette.png -y;
    ffmpeg -v error -i image.gif -i watermark.gif -i palette.png -filter_complex '[1:v]scale=80:30, [0:v]overlay=(main_w-overlay_w) - main_h/30:(main_h-overlay_h) - main_h/30, paletteuse' -an image-watermark.gif -y

    At one point I was able to use the palette for the main GIF, so its quality improved. However, the watermark looked pretty bad. It’s pretty obvious that I have to do the overlay, and then the palette, so that the palette include the colors present in the watermark. However, I have no idea how to do that.

    Can someone point me in the right direction ?