Recherche avancée

Médias (91)

Autres articles (62)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (4815)

  • ffmpeg making gif from serially numbered images

    30 mars 2017, par hadi k

    my files are named :

    file1.png
    file2.png
    file3.png
    ....
    file11.png
    ...
    file123.png
    ...
    file200.png

    now I want to make a gif of these images. I tired with

    ffmpeg -framerate 10  -pattern_type glob -i 'file*.png' -c:v libx264 -pix_fmt yuv420p growth.avi

    but it does not work properly. What am i doing wrong ?

  • ffmpeg doesn't recognize the local key file for decrypting a m3u8

    3 juillet 2021, par Rockt

    Ok so here is the situation.

    


    I have a m3u8 file which is encrypted using AES-128. Using a simple python script I download the m3u8 and the key file and then serves it over the local network with the aid of SimpleHTTPServer. Then I run a separate shell script to get the m3u8 and key file from the local server and it get the job done without any problems.

    


    Now instead of getting the files from the local server, I want to decrypt them locally from the command line. So I replaced the key path of the m3u8 from,

    


    #EXT-X-KEY:METHOD=AES-128,URI="https://example.com/key"


    


    to

    


    #EXT-X-KEY:METHOD=AES-128,URI="file://local/path/to/video.key"


    


    And when executed the following from the command line,

    


    ffmpeg -safe 0 -protocol_whitelist file,http,https,tcp,tls,crypto -allowed_extensions ALL -i playlist.m3u8 "output.mp4"


    


    It gives me these two errors and exits.

    


    Unable to open key file file://local/path/to/video.key
playlist.m3u8: Invalid data found when processing input


    


    Now my question is why ffmpeg doesn't give any errors when I serve the key file over a local server, and why things get changed when I do it this way ? Any help maybe ?

    


  • Making a simple video directly using C

    13 août 2020, par thedeathstar1997

    I am working on an Ising Lattice simulation (2D binary image) using C and I want to generate a video of the simulation. Currently I am saving every step as a ppm image and using ffmpeg to convert the folder of images into an mp4 video. Is there any way to directly generate a video in the C code ? I know that C has a library for ffmpeg but the documentation got me very confused.