Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (105)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (16033)

  • ffmpeg video encode .mp4 for webserver

    23 août 2016, par Nandex Sierra

    I have a lot of mini-videos (from 1 to 10 seconds) and the size of each is about 5-10MB. I have a Apache server and I want to reproduce the videos from the url (http://localhost/videoX.mp4)

    I have a big problem, the video takes to start about 12seconds and I think that this is a lot of time. Somebody knows how encode the video or a platform to upload my videos ??

    Im using this :

    ffmpeg -i video_X.mp4 -vcodec libx264 -crf 20 -movflags faststart videoX.mp4

    Thanks 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...

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