Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (13869)

  • Distributing a Python module with ffmpeg dependency

    17 août 2024, par arafasse

    I’m working on a Python module that harnesses some functionality from the FFmpeg framework - specifically, the ebur128 filter function. Ideally the module will stand on its own as an independent, platform agnostic tool for verifying that audio clips comply with EBU loudness standards. It’s designed so that end users need only perform one simple, (hopefully !) painless installation procedure, which will encompass the installation of both the FFmpeg libraries and my Python wrapper/GUI.

    


    Does anyone have general advice for creating Python module with external dependencies, or specific advice for standardizing the FFmpeg installation across platforms ? Distutils seems pretty helpful – are there other guidelines or standard practices for developing a neatly packaged Python tool ? I want to minimize any installation headaches for end users.

    


  • How can I add a background image while combining *.png files using ffmpeg

    12 février 2023, par Walt Howard

    I'd like to add a background image while combining *.png files to make an mp4 file, using ffmpeg.

    


    Currently, I have to first create an animated gif using imagemagick convert, like this :

    


    convert -delay ${DELAY} -dispose Background *.png -coalesce null: ${BACKGROUND} -compose dstOver -layers composite -layers optimize -loop 0 planet.gif


    


    Then I process that animated gif using ffmpeg to optimize it :

    


    ffmpeg -i planet.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" planet.mp4


    


    Which sort of works, but is slow and has a problem. I craps out if I go above about 100 input files, and creates animated gifs that are basically just white screens.

    


    ffmpeg alone works great, and 100 times faster stitching the *.png files together

    


    ffmpeg -framerate 10 -pattern_type glob -i '*.png' -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" planet.mp4

    


    But, no background there. I haven't found anyway to add that background. Does ffmpeg even support such a thing ?

    


  • given a line number. which command sets the string at this line number as a parameter [duplicate]

    1er juillet 2022, par pitterpatter

    i have two lists.

    


    urls.txt contains urls line by line to files.

    


    they are named gibberish like 2345.mp4

    


    filenames.txt contains new filenames i want for those files.

    


    also line by line. both lists are in the correct order.

    


    i want to download those files in urls.txt with ffmpeg and rename them.

    


    i dont know how to work it out for the filenames.txt

    


    so far i have a for loop functioning with the gibberish filenames.

    


    how do i get the new filenames ?

    


    assume the for loop increments line numbers i++, which command sets the string at this line number as a parameter ?

    


    for /f %%a in (urls.txt) do ( 
ffmpeg -i "%%a" -c copy "%%~na.mp4" )