Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

Sur d’autres sites (14622)

  • ffmpeg conversion from mp4 to mov or webm to mov [closed]

    28 novembre 2023, par RTB

    I have a mp4 video with green background. This is being converted to webm with transparent background using ffmpeg. Now i need a mov format of that video with transparent background as well.

    


    Command to convert mp4 with green background to webm is as follows :

    


    ffmpeg -i input.mp4 -vf "chromakey=#3D995C:similarity=0.087:blend=0.0" -c:v libvpx-vp9 -pix_fmt yuva420p -crf 60 -c:a libopus -b:a 32k output.webm

    


    This works well. the green background is being removed with converted into webm.

    


    Now i need a mov. I have tried the following commands :

    


    ffmpeg -i input.mp4 -filter_complex "[0:v]chromakey=#3D995C:similarity=0.087:blend=0.0[v]" -map "[v]" -c:v png -profile:v high -c:a aac -b:v 1000k -b:a 128k output.mov

    


    ffmpeg -i input.mp4 -filter_complex "[0:v]chromakey=#3D995C:similarity=0.087:blend=0.0[v]" -map "[v]" -c:v png -c:a aac -b:v 1000k -b:a 128k output.mov

    


    ffmpeg -i output.webm -c:v libx264 -pix_fmt biteq -tag:v hvc1 -movflags faststart+accurate_seek output.mov

    


    I am using the latest ffmpeg library for my conversion.

    


  • avfilter/vf_blend : add multiply128 mode

    7 février 2016, par Paul B Mahol
    avfilter/vf_blend : add multiply128 mode
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/blend.h
    • [DH] libavfilter/vf_blend.c
  • avfilter/vf_blend : fix incorrect Y variable when threading is used

    23 mai 2016, par Paul B Mahol
    avfilter/vf_blend : fix incorrect Y variable when threading is used
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/blend.h
    • [DH] libavfilter/vf_blend.c
    • [DH] libavfilter/x86/vf_blend_init.c