Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (99)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (9976)

  • asfdec : Fix reading from the pipe

    10 juillet 2015, par Alexandra Hájková
    asfdec : Fix reading from the pipe
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavformat/asfdec.c
  • asfdec : Fix reading from the pipe

    10 juillet 2015, par Alexandra Hájková
    asfdec : Fix reading from the pipe
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavformat/asfdec.c
  • java processbuilder ffmpeg pipe

    25 mai 2015, par Pa Rö

    i try to run ffmpeg out java. here my code :

    String[] temp = {"ffmpeg\\ffmpeg.exe","-i","input_track.ac3","-threads","0","-af","volume=volume="0.0"dB","-acodec","pcm_s32le","-ac","6","-ar","48000","-f","wav","-","|","ffmpeg\\fdkaac","--ignorelength","-m","1","-o","ouput_track.aac","-"};

    ProcessBuilder pb = new ProcessBuilder(temp);
    Process p = pb.start();
    int ev = 0;
    if (p.waitFor() != 0)
    {
      ev = p.exitValue();
    }

    i try the comand at windows cmd, here have a problem with "|" at the ffmpeg command line.

    maybe someone say my fould ?

    best regards