Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (57)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Runtime.getRuntime().exec() is not running the ffmpeg command on centos

    23 décembre 2013, par Karn_way

    I am doing as below on centos machine

    String fileName = "ffmpeg -i file:///home/xyz %d.png";
    Runtime.getRuntime().exec(fileName);

    xyz is mp4 file and i want that to create number of different Image frames

    when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?

  • Runtime.getRuntime().exec() is not running the ffmpeg command on centos

    19 juin 2018, par Karn_way

    I am doing as below on centos machine

    String fileName = "ffmpeg -i file:///home/xyz %d.png";
    Runtime.getRuntime().exec(fileName);

    xyz is mp4 file and i want that to create number of different Image frames

    when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?

  • list txt file of ffmpeg concat demuxer

    6 septembre 2018, par Sinan Güler

    I wanted to concat 10 files of mp4 of the same format/size/bitrate....
    I had my files and the txt file under the same directory :

    Macbook Pro>Macintosh HD>Users>my username>downloads
    The txt file I created looks like this :
    https://i.imgur.com/LP7HgSS.jpg
    I entered the following command in terminal :

    ffmpeg -f concat -i mylist.txt -c copy output
    but always got the same result : no such directory
    Maybe somebody could help point out my mistakes, appreciated !