Recherche avancée

Médias (91)

Autres articles (75)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

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

Sur d’autres sites (13534)

  • Superimpose audio track on plot animation

    17 février 2023, par Antoine101

    I plot a matrix in a standard matplotlib figure with imshow. Each matrix is the result of a signal processing calculation on a time signal snapshot (0.2s). I plot each snapshot one after the other (the signal is several seconds long) in a loop and record the animation with FFMPegWriter, setting the FPS so that it matches real time. The output is an MP4 file.

    


    Now, I'd like to add a soundtrack on top of it, of the time signal that was used to calculate the matrices.

    


    How would you do that ? I scrolled a lot but didn't find any suitable solution.
Any idea of libraries or packages ?

    


    Many thanks in advance.

    


  • How Do I Convert a yuv420 Video File to 16-bit (using ffmpeg) ?

    1er novembre 2022, par IanMurphy

    As the title says, my video file has 12-bit depth and I want to convert it to 16-bit. I dont care which yuv pixel format, as long as its 16 bit. I have installed ffmpeg and I can't figure out what combination of arguments to use to convert it. The video file is very small : 20 frames at 352x288.

    


    This is the command I have been trying, but the file size is the same number of bytes as the original :

    


    ffmpeg -video_size 352x288 -pixel_format yuv420p -sample_fmt s16 -i inpput.yuv output.yuv


    


    If there is another way to do this without ffmpeg, I am open to any suggestions. Thanks in advance !

    


  • Use argument shortest in C++ code in FFMPEG

    7 juillet 2021, par Little Max

    I need to set up the argument "-shortest" but in c++ code. I know that I can set up an argument with value for example :

    


     av_opt_set(codecContext, "crf", "28", 0);


    


    But here is the thing, there is a value, but in shortest no value.
So how can I set up shortest in c++ code

    


    Thanks in advance