Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (106)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • How to render VAAPI surface with ffmpeg using OpenGl

    27 mai 2019, par HellBlood

    Hello programmer friends,
    My project is to use the VAAPI hardware acceleration linked with FFmpeg. I managed to decode with VAAPI however I would like to be able to display the video coming out of VAAPI decoding using OpenGL to render. Are there functions that allow this ? I know that for that you have to play with VAAPI’s surface "VASurfaceID" but I do not see how ...
    Thank you in advance :)

  • executing cd command and ffmpeg in java

    27 août 2013, par Chris J

    How to run cd command(In linux Ubuntu) and ffmpeg on the changed directory. The following jsp program not working for me.

    String cmd = "cd "+getServletContext().getRealPath("/")+"Files/videos/";
    out.println(cmd);

    ProcessBuilder pb = new ProcessBuilder(
       "/bin/sh", "-c",
       cmd + "&& ffmpeg -i nature.MP4");


    Process p = pb.start();
    BufferedReader in = new BufferedReader(
              new InputStreamReader(p.getInputStream()) );
    String line;
    out.println("Meta-data...");
    while ((line = in.readLine()) != null) {
     out.println(line);
    }
    in.close();

    Thanks in advance...

  • Creating a video from set of images Android

    18 mai 2014, par Nuriel Aventador Taran

    I am working on an app for android that creates video file from a video at start and then set of images, and saves it.
    Is there any way to accomplish that ?

    I tried JCodec and it has broken libraries, untrusted code on the web and lack of knowledge about this library.

    I tried FFMpeg and it is unsupported enough on android and involves working with NDK.

    I tried to create an animation with AnimationDrawable and save this animation as a video, but I can’t find a way to save animation as video except using the feature of KITKAT 4.4, but it requires connecting to a computer and having a root.

    Is there any other solutions or a trusted and explained way to do this using the ways above ?

    Thank in advance