Recherche avancée

Médias (91)

Autres articles (47)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9667)

  • lavu/hwcontext_opecl : fix the build warning

    30 mai 2018, par Jun Zhao
    lavu/hwcontext_opecl : fix the build warning
    

    fix the build warning when use Portable Computing Language (pocl).

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavutil/hwcontext_opencl.c
  • ffmpeg How to add multiple drawtext to one input video

    22 mai 2018, par Raven

    I need to add two texts to a video. First text appears in the bottom right for the first 6 seconds, and the second text at the center of the video for the last 3 seconds.

    Below is my code :

    ffmpeg -i input.mp4 -vf drawtext="text='Stack Overflow': fontcolor=white: borderw=2: fontfile=Arial Black: fontsize=w*0.04: x=(w-text_w)-(w*0.04): y=(h-text_h)-(w*0.04): enable='between(t,0,6)'", -vf drawtext="text='Stack Overflow': fontcolor=white: borderw=2: fontfile=Arial Black: fontsize=w*0.04: x=(w-text_w)/2: y=(h-text_h)/2: enable='between(t,7,10)'" -codec:a copy output2.mp4

    I don’t get any error running the above code but in the output file, only the second drawtext is applied.

  • Generating a Square wave with FFmpeg

    12 avril 2018, par Ali Bai

    So I know how to generate a sine wave with FFmpeg, for example

    ffmpeg -f lavfi -i "sine=frequency=440:duration=10" sine_440_10.wav

    How can I use this and create both a square and also a triangle wave ?

    I am also wondering if a simple attack and decay can be applied with FFmpeg ?

    Thanks in advance for any help.