Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (106)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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

Sur d’autres sites (11674)

  • 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

    


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

  • How can I write to file with video state while paused in ffplay

    26 août 2014, par pixelearth

    Can anyone recommend a way to do what I need : I need to go through 2000+ videos and choose an accurate thumbnail frame down to the .xx decimal place.
    Ffplay works great for this, but it’s tedious to manually copy paste this value from the terminal into my database. It would be great if I could hit a key sequence or somehow trigger an event that would write information about ffplay’s current state (filename, location) to a file.

    Is there a way once the video is paused to somehow write to a file with the filename and location ?