Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (111)

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

  • Extracting Frames from Video using FFMPEG in GPU and File Name with TimeStamp in Linux

    2 septembre 2019, par SRaj

    I have Long video 8hrs to be converted to individual frames to be saved in a folder with the filename in the format "InputVideoName_Frame_Number_TimeStampoftheframeinthevideo.jpg" for example : InputVideo2_234_130425 in a python code. My system has GPU to process the load.

    I was able to get to a part of it by running the below code in terminal but was not able to have the filename in the format i need and also was not able to run it in python code with absolute pathnames

    ffmpeg -i ActualPath/Video.mp4 -vf fps=1 Outputfolder/out%d.jpg

  • Ffmpeg apply filter with C++ API

    29 septembre 2022, par Turgut

    I want to apply a filter to my encoded ffmpeg video. I've found a terminal command that presumably does what I want. But the problem is I want to do this inside my code, specifically my encoder.

    


    How can I achieve this ? What function/code snippet allows me to propperly implement colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131[colorchannelmixed]
and [colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect] using the C library ?

    


  • Writing each I frame into a different .mp4 file and adding some additional logs

    8 juin 2018, par MSD Paul

    While using x264 encoder, how to store each and every I frame (from each and every .png file (frame)) into a different .mp4 file ?

    If I have 5 frames, after encoding those 5 frames into 5 I frames how to write those in different files ?

    Another Question : How to put few additional log messages or print statements in few functions in x264 code which I can view on the terminal as the encoding output like other logs ???