Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (58)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • ffmpeg can't find files using C ? [closed]

    14 décembre 2019, par Edoardo Colella

    I tried to use ffmpeg concatenation with popen command in C but I get "No such file or directory". If I use Linux terminal with the same command it works.

    C code :

    fp=popen("ffmpeg -i \"concat : audio/1.mp3|audio/2.mp3\" -acodec copyoutput.mp3", "r") ;
    pclose(fp) ;

    Error in Linux shell :
    audio/1.mp3|audio/2.mp3 No such file of directory found

    What could be the problem ?

  • FFMPEG method DESCRIBE failed : 453 Not Enough Bandwidth

    19 janvier 2021, par José Vitor Santos Silva

    I'm trying to create a RTSP stream, I use the following command to connect :

    


    ffmpeg -i "rtsp://user:pass@192.168.0.8:554/PSIA/streaming/tracks/201?starttime=20201229T171900z&endtime=20201229T172200z" -f opengl "cam2"


    


    When I create a single connection all works fine, but when I try to create other connection in another terminal I get the error :

    


    FFMPEG method DESCRIBE failed : 453 Not Enough Bandwidth

    


  • java processbuilder x264.exe

    23 juillet 2015, par Pa Rö

    i want encoding a video with the x264 out of my own java application.

    the problem is that the x264.exe start to work, and than it stop.
    the process not terminate, but froze. i try to run the x264 from terminal, that works fine. the problem must be in java.

    here my code :

    String[] command= new String[]{"cmd","/c","x264.exe ....";
    ProcessBuilder pb = new ProcessBuilder(temp);
    Process p = pb.start();
    int ev = 0;
    if (p.waitFor() != 0)
    {
     ev = p.exitValue();
    }

    best regards,
    paul