Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (51)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (9790)

  • use ffmpeg to overlay a video on top of another using an alpha channel

    15 mai 2018, par cloudraven

    Similar to what alphamerge / alphaextract do, but instead of having two sources I want to use three

    InputVideo1, AlphaofInputVideo1, BackgroundVideo

    The idea would be to overlay inputvideo1 on top of backgroundvideo using AlphaofInputVideo1 to do a more accuracte blending. Is this possible ? Using intermediate steps (e.g. using alphamerge and generate intermediate rgba bitmaps) is acceptable.

  • Compress Video While Preserving Alpha Channel

    12 janvier 2019, par Nimble

    I have a video with a transparent background that is very large despite being only 6 seconds. I was hoping I could compress it with FFmpeg but everything I try seems to discard the alpha channel...

    This code brings the file down from 33gb to 24mb :

    ffmpeg -i "C:\Users\djcim\Desktop\Intro For Now\Video Intro.avi" -map 0 -c:v libx264 -preset slow ^
    -crf 17 -acodec copy "C:\Users\djcim\Desktop\Intro For Now\Compressed.avi"

    But as stated I lose the alpha channel, any ideas on how I could significantly compress my file while preserving the alpha channel ?

  • how to batch combine two sequence of images with an alpha channel using ffmpeg or imagemagick ?

    10 mai 2018, par cloudraven

    Other tools or Simple APIs are also welcome.

    I have a sequence of pngs with alpha that I want to overlay on top of a few videos.
    Using ffmpeg would be fantastic, but using imagemagick is also acceptable. I could extract all the frames in the video and use imagemagick to batch blend every frame then re-encode (re-encoding is acceptable).