Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (81)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

  • python - tqdm progress bar on ffmpeg process with avs pipe

    9 octobre 2019, par MeSo2

    I am trying to implement a tqdm progress bar, but have no idea on how to do this when calling ffmpeg with check_output. (Most of the commands are set inside the avs file.)

    from subprocess import check_output
    check_output("ffmpeg -i \"temp_AVS.avs\" -c:v libx264 -b:v 25M -c:a aac 1.mp4", shell=True)

    I cam across this Can ffmpeg show a progress bar ? but nothing hints on how to best implement it with my code.

    I also found this related post How to link the ffmpeg transcoding process information into a vb6 GUI app ?, and it look like I just need to call for the ffmpeg output. But I am note sure how to do that.

  • How to automaitcally install ffmepg in c#

    25 janvier 2021, par user14527374

    so I am writing a c# application which uses ffmpeg to upscale videos. Currently, it checks if ffmpeg is installed, and if not, prompts the user to install it.

    


    {
        if (File.Exists(@"C:\ffmpeg-2020-12-27-git-bff6fbead8-full_build\bin\ffmpeg.exe"))
        {
            
        MessageBox.Show("Please note that this will only upsalce a video, it will not remaster it. Program C 2020 Keifmeister Technologies. Aka this will clear up the image but not upgrade character models or anything. Cheers.");
    }
    else
    {
        MessageBox.Show("You need to have ffmpeg installed, and you do not. Opening download link, please extract the downloaded zip file to root of yout c:\\ drive. Thanks.");
        Process.Start("https://github.com/GyanD/codexffmpeg/releases/download/2020-12-27-git-bff6fbead8/ffmpeg-2020-12-27-git-bff6fbead8-full_build.zip");
    }
}


    


    I am wondering, is there instead a way to install ffmpeg automatically and print its install location as a string ? Thanks very much.

    


  • libx264 : Define X264_API_IMPORTS on MSVC/ICL

    19 juillet 2013, par Derek Buitenhuis
    libx264 : Define X264_API_IMPORTS on MSVC/ICL
    

    libx264 has a few data exports which require X264_API_IMPORTS
    to be defined if we link to libx264 dynamically on Windows.

    In a similar fashion to how we handle our compat snprintf
    implementation, if we define it all the time, the compiler
    will first try and link to __imp_x264_symbol_name, and failing
    that, as in the case of a static libx264, will attempt to link
    to the non-prefixed symbol, which has already been pulled in by
    other x264 functions’ object files.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DBH] libavcodec/libx264.c