Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (59)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

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

Sur d’autres sites (6184)

  • ffmpeg avformat_open_input always returns "Protocol not found" rv=(-1330794744)

    7 juin 2019, par bzivkovic

    Trying to get ffmpeg working in Visual Studio 2010. So far all ffmpeg headers and libs are loaded, no error or warning occurs.

    avcodec_register_all();
    AVFormatContext *pFormatCtx = NULL;
    char errbuf[256];
    pFormatCtx = avformat_alloc_context();
    int rv = avformat_open_input(&pFormatCtx, "myfile.ext", NULL, NULL);
    if (rv!=0){                              
       av_strerror(rv, errbuf, sizeof(errbuf));
    }

    The problem is, avformat_open_input always returning -1330794744 (errbuf="Protocol not found"). Tried x86 & x64 headers and libs on 32bit XP and 64bit W7. Whatever I put for "myfile.ext" (tried "file1.avi", "file=c :\file1.avi", "http://www.someweb.com/file1.avi", and even empty char* "") response is always "Protocol not found". Any ideas ?

  • UDP Streaming with ffmpeg - overrun_nonfatal option

    21 octobre 2022, par Julien Greard

    I'm working on a software which uses FFMPEG C++ libs to make an acquisition from an UDP streaming.

    



    FFMPEG (1.2) is implemented and running but I get some errors (acquisition crashes and restarts). The log displays the following message :

    



    *Circular buffer overrun. To avoid, increase fifo_size URL option. To survive in such case, use overrun_nonfatal option*

    



    I searched online for documentation about how to use this option, but I only got informations about how to use when running directly ffmpeg executable.

    



    Would someone know how to set the correct option in my C++ code to :
- increase fifo_size
- use overrun_nonfatal option

    



    Thanks

    


  • UDP Streaming with ffmpeg - overrun_nonfatal option

    19 juillet 2016, par Julien Greard

    I’m working on a software which uses FFMPEG C++ libs to make an acquisition from an UDP streaming.

    FFMPEG (1.2) is implemented and running but I get some errors (acquisition crashes and restarts). The log displays the following message :

    *Circular buffer overrun. To avoid, increase fifo_size URL option. To survive in such case, use overrun_nonfatal option*

    I searched online for documentation about how to use this option, but I only got informations about how to use when running directly ffmpeg executable.

    Would someone know how to set the correct option in my C++ code to :
    - increase fifo_size
    - use overrun_nonfatal option

    Thanks