Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (55)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

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

Sur d’autres sites (7931)

  • Wipe image in and out with ffmpeg / imagemagick

    29 septembre 2017, par alexschomb

    I’d like to create a wipe in/out from left to right effect with ffmpeg and/or ImageMagick that is common to most video editors. (e.g. Adobe Premiere, Final Cut Pro and even OpenShot) Some might call this a slide in/out transition effect.

    I found that ffmpeg has a lot of filters (including fades), but none seem to be the correct choice for this.

    There are also ImageMagick transitions that achieve a wipe in effect. Like in the following example (that is derived from here) :

    convert overlay.png -crop 10x1080 miff:- | convert - out.gif

    But I found it hard to control the actual speed/duration of the transition. I’d like it to last only 2.5 seconds. But I can’t make it that fast, because the -delay 1x30 option doesn’t seem to let me decrease the delay that low. There is also a library with ImageMagick transitions here that unfortuantely isn’t compatible with batch.

    I suppose there is a solution for ffmpeg that I couldn’t think of, yet. I’d really appreciate your advice !

  • Revision 3653 : pas de boucle => #URL_ARTICLE normal

    27 juin 2010, par kent1 — Log

    pas de boucle => #URL_ARTICLE normal

  • ffmpeg - pipe video output as a normal file

    23 novembre 2019, par Erik Tetland

    I want to be able to write ffmpeg video output to stdout as if it was a normal file. I want the video to be able to be seekable (streamable videos can’t), but I don’t want to save it to disk immediately.

    If I use
    cat *.jpg | ffmpeg -f image2pipe -r 30 -i - -f mov - > 1.mp4
    It errors because the mov format isn’t streamable
    muxer does not support non seekable output

    Is there some way to force ffmpeg to pipe it as if it was a normal file ?