Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

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

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

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

  • FFmpeg eq filter equivalent value for css filter

    27 juillet 2018, par Praveen Tamil

    I’m showing the image with css filter applied in browser to how the output will be look like after processing.

    But the css filter accept the value in form of percent for contrast, brightness, saturation.
    But the ffmpeg’s eq filter is totally different and even more gamma params are used.

    I applied following filter in browser side

    filter: brightness(50%) contrast(100%) saturate(100%);
    filter: brightness(100%) contrast(100%) saturate(50%);
    filter: brightness(120%) contrast(100%) saturate(125%);

    I don’t how to do mapping these values to FFmpeg eq filter.

    I know below is the default code

    eq=contrast=1:brightness=0:saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1

    I need equivalent value of FFmpeg’s eq filter for above mentioned CSS filters.
    And mapping value from CSS filter to eq filter.

    css filter ref : https://www.w3schools.com/cssref/css3_pr_filter.asp

  • copy streams equivalent for yt-dlp (python)

    25 décembre 2024, par GDjkhp

    I need the -c:v copy -c:a copy counterpart of ffmpeg postprocessing for yt-dlp in python.

    


    The following code is how I convert videos which is really slow.

    


            # imagine options -> dict
        options.update({
            'postprocessors': [{
                'key': 'FFmpegVideoConvertor',
                'preferedformat': arg, # can be mp4, webm, etc.
            }]
        })


    


  • Translate ffmpeg command to equivalent libav usage in C++ ?

    12 mai 2023, par copperyin

    How I can convert this ffmpeg command :

    


    ffmpeg -f libndi_newtek -i "COPPERYINPC (OBSNDI)"  -f flv "rtmp://192.168.31.166/live/stream


    


    ...to C++ API that can be complied in Ubuntu 18.04 with ffmpeg lib v3.4.12 and NDI lib v4.5.3 ?

    


    Above , in fact, I want to push ndi to rtmp use C++ API ,not ffmpeg command.

    


    compiled with gcc , running in Ubuntu 18.04 ,and I build in VS2019.