Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (72)

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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9237)

  • 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

  • ffmpeg streaming rtsp with parameters in the uri (url)

    11 mars 2015, par PGKLIC

    I attempt to stream a rtsp source and publish it through rtmp. But in my source url, there are several parameters :

    ffmpeg -i rtsp://ip/user=admin&password=admin&channel=1&stream=0.sdp -f flv rtmp://local/live/cam1

    how to set ffmpeg accepting such url with parameters, thank you in advance.