Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7806)

  • 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 ?

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

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