Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (45)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • 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