Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (58)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (7050)

  • What are the gotchas of using statically linked libraries in serverless platforms such as Google Cloud Functions ?

    5 septembre 2017, par Dzh

    Libraries such as ffmpeg-static upload statically linked binaries onto container.

    I wonder what are the drawbacks of using this approach ?

    Does the library size counts against your memory use (it’s billed by GCloud) ?

    Does it slow down the container ? Perhaps some future-proofing issues ?

    Edit : Found something of a related (I wanted to setup OpenCV) on AWS blog. It doesn’t explain drawbacks, just shows how to do it exactly.

  • Cannot install snappy with brew - fatal error : 'cassert' file not found

    23 mars 2024, par kronus

    I am on an old mac - 10.14.6 - and I am trying to install ffmpeg via brew.

    


    I am finding errors during the make of snappy

    


    When I try to brew install snappy the same errors persist :

    


    ==> Installing dependencies for snzip: snappy&#xA;==> Installing snzip dependency: snappy&#xA;==> Patching&#xA;==> cmake . -DSNAPPY_BUILD_TESTS=OFF -DSNAPPY_BUILD_BENCHMARKS=OFF&#xA;==> make install&#xA;Last 15 lines from /Users/<home>/Library/Logs/Homebrew/snappy/02.make:&#xA;In file included from /tmp/snappy-20240323-80108-r3czy0/snappy-1.1.10/snappy.cc:29:&#xA;In file included from /tmp/snappy-20240323-80108-r3czy0/snappy-1.1.10/snappy-internal.h:34:&#xA;/tmp/snappy-20240323-80108-r3czy0/snappy-1.1.10/snappy-stubs-internal.h:40:10: fatal error: &#x27;cassert&#x27; file not found&#xA;40 | #include <cassert>&#xA;  |          ^~~~~~~~~&#xA;make[2]: *** [CMakeFiles/snappy.dir/snappy-sinksource.cc.o] Error 1&#xA;make[2]: *** Waiting for unfinished jobs....&#xA;1 error generated.&#xA;make[2]: *** [CMakeFiles/snappy.dir/snappy-c.cc.o] Error 1&#xA;1 error generated.&#xA;make[2]: *** [CMakeFiles/snappy.dir/snappy-stubs-internal.cc.o] Error 1&#xA;1 error generated.&#xA;make[2]: *** [CMakeFiles/snappy.dir/snappy.cc.o] Error 1&#xA;make[1]: *** [CMakeFiles/snappy.dir/all] Error 2&#xA;make: *** [all] Error 2&#xA;</cassert></home>

    &#xA;

  • How can I make smooth zooming video from image sequence in FFMPEG ?

    26 octobre 2020, par CALKing

    I need to make a video from an image sequence, actually a deepdream image sequence I have generated. And I've generated the images so that every image is a 1.05 x zoom on the last image, hoping to be able to make something like this : https://www.youtube.com/watch?v=dbQh1I_uvjo. But because of the demanding CPU deepdreaming requires, I didn't have the time and resources to generate images for a 30 fps video, but more like a 1 fps video. Which I actually managed to do, my code for that looks like this :

    &#xA;

    ffmpeg -r 1 -i %04d.jpg -c:v libx264 -r 10 output.mp4&#xA;

    &#xA;

    Now to make the video smoother I want to smoothly zoom in 1.05 x on every image in the sequence for about a second or two before continuing to the next image, which should then be in position with the one before. I have no experiene at all with FFMPEG and can't find much help on the internet. Could anyone help me with this ?

    &#xA;

    Thanks !

    &#xA;