Advanced search

Medias (91)

Other articles (5)

  • Installation en mode ferme

    4 February 2011, by

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Emballe médias : à quoi cela sert?

    4 February 2011, by

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel; un seul document ne peut être lié à un article dit "média";

  • Configuration spécifique d’Apache

    4 February 2011, by

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

On other websites (2624)

  • Force FFMPEG to reuse gif frames

    23 July 2019, by friendlygiraffe

    I am exporting a gif from a mov file using ffmpeg with the following code:

    ffmpeg -i movie.mov -i mypalette.png -lavfi "paletteuse,scale=600:-1" -r "25" -loop "0" movie.gif

    The movie has a lot of pauses where the frame does not change. I noticed when opening the gif in Photoshop it is using duplicates of the same frame rather than pausing at that frame for say, 2 seconds.
    Is there a method for forcing FFMEG to re-use identical frames?

  • play encrypted movies in vlc by decrypting them by ffmpeg "on the fly"

    21 May 2024, by doctor

    I would like to play encrypted movies in vlc by decrypting them by ffmpeg like below on macOS.
The size of my movie is, say, 200-1000MB. (hundreds of files)

    


    My problem is that it is too slow to decrypt; it takes 5mins for 300MB movie before it starts to play.
My guess is that ffmpeg first decrypts the whole content of 300MB and then VLC plays it.
My question: Is it possible to play the movie "on the fly" while decrypting it?
(play the decrypted chunk once it is decrypted, Not wait until the whole movie is decrypted before it plays, so that it starts to play in, say, 10 secs delay.)

    


    ffmpeg -decryption_key 0 -i "movie.locked.mp4" -f matroska | /Applications/VLC.app/Contents/MacOS/VLC - --fullscreen --quiet --play-and-exit


    


  • Libavfilter with ffmpeg - overlay the last X seconds

    9 April 2012, by gphilip

    Looking at the docs of libavfilter it doesn't seem to be possible, but still, I hope you can help me.

    I want to overlay an image to a movie but only for the last X seconds of the movie. I managed to overlay for the full movie, no problem. But can I get a time when the overlay is shown?

    I use ffmpeg with compiled with libavfilter. Any tricks to solve this?