Recherche avancée

Médias (91)

Autres articles (63)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (9889)

  • af_channelmap : fix number of channels

    28 mars 2015, par Marton Balint
    af_channelmap : fix number of channels
    

    Fixes segfaults with the following command :

    ffmpeg -f lavfi -i aevalsrc=0:c=stereo:n=1920 -af ’channelmap=0’ test.ac3

    Signed-off-by : Marton Balint <cus@passwd.hu>
    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/af_channelmap.c
  • ffmpeg-python outputs black screen when trying to save as mp4

    3 mars 2023, par Saya

    This is my code. I am trying to make a video out of all pictures in the pics2 directory using ffmpeg.

    &#xA;

    import subprocess&#xA;&#xA;command = &#x27;ffmpeg -framerate 1 -i "pics2/Image%02d.png" -r 1 -vcodec libx264 -s 1280x720 -pix_fmt yuv420p Output.mp4&#x27;&#xA;p = subprocess.call(command, shell=True)&#xA;

    &#xA;

    This saves an Output.mp4 successfully but the video has no frames (It is completely black)

    &#xA;

    How do I solve this ?

    &#xA;

  • Can I save a matplotlib animation to webm format ?

    19 septembre 2017, par Nikhil Mahajan

    I am using this example code as a test case : https://matplotlib.org/examples/animation/moviewriter.html

    In this code, they use FFMPEG to write the matplotlib animation to an .mp4 video file. Is it possible to write to a .webm format ?

    But I am not sure how to go about doing this.