Recherche avancée

Médias (91)

Autres articles (50)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (7455)

  • Insert background image using FFmpeg

    9 février 2015, par Yannick

    I’ve just started using FFMpeg and I’m trying to create a video slideshow from images

    I have the following

    "ffmpeg -framerate 1/5 \
    -start_number 1 \
    -i "C:/test/%03d.jpg" \
    -vf 'movie=C:/test/bg.jpg [over], [in][over] overlay'
    -c:v libx264 \
    -r 30 "C:/test/video.mp4"

    And that works perfectly to create slideshow with the pictures but how can I add a background image ?

    I’ve looked at the command -overlay command but I can’t seem to make it work.

    Thanks for the help.

  • Encoding a live stream of bitmaps using FFMPEG

    1er avril 2015, par user3088260

    I’ve got a constant stream of jpeg’s that need to be converted to a video (of any kind).
    The problem is that the stream is virtually infinite and I don’t know any method of creating videos using pictures that doesn’t store the whole file in memory until the stream stops..

    Is there a way that I can feed FFMPEG with bitmaps or jpegs constantly from c# or at least make ffmpeg read images from a folder with +432000 images (on the command line) ?

    Please note that there will be no sound, the images will be low quality, they will come at a rate 5 FPS and this will run on a high-ish end laptop. BTW I can provide code but I assume this is unnecessary at the moment as I am only creating bitmaps and saving them.

  • FFmpeg, animation type : How to move the video screen along the large images ?

    17 décembre 2019, par ArmKh

    My output video sizes are 1280x720. And I have an images with these sizes

    1. 3000x1200
    2. 1200x2000

    So, I need to animate the large images inside the small video frames. The first image should be animated from right to left and the second one from top to bottom. In other words it will be something like moving screen along the pictures

    In this video example you can see the animations like that.
    So, how I can do it ?