Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

  • 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

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (4214)

  • avformat_open_input causes exception on RTP stream open

    3 avril 2014, par user3283475

    I'm trying to program a video player of the RTP stream. I'm using visual studio 2010. When avformat_open_input command is executed an exception is generated (ntdll.dll !774b70f4()). It works fine with normal file from disk(test.avi).

    #include "stdafx.h"
    #include

    //zeranoe headers and libraries(DLLs also from zeranoe)
    extern "C"
    {
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    }

    #pragma comment(lib, "avcodec.lib")
    #pragma comment(lib, "avformat.lib")

    int _tmain(int argc, _TCHAR* argv[])
    {
       AVFormatContext *pFormatCtx=NULL;
       //char* Filename="c:\\test.avi"; //if I use this there is no crash
       char* Filename="rtp://239.255.42.42:5004";//if I use rtp I receive exception
       int videoStream,i;
       AVCodec         *pCodec=NULL;
       AVCodecContext  *pCodecCtx=NULL;

       avcodec_register_all();
       av_register_all();
       avformat_network_init();

       unsigned int _expTime = 5000;
       static const AVIOInterruptCB int_cb = {interrupt_cb, &amp;_expTime};


       // Open video file
       if(avformat_open_input(&amp;pFormatCtx, Filename , NULL,NULL)!=0)//ntdll.dll exception when I try to open rtp stream
       return -1; // Couldn&#39;t open file

    Can someone help me please ?

  • /root/bin/ffmpeg : error while loading shared libraries : libtheoraenc.so.1 : cannot open shared object file : No such file or directory

    12 février 2014, par Paks

    my ffmpeg command gives error when I try to convert video format. I have installed ffmpeg manually as guided in this link https://trac.ffmpeg.org/wiki/CentosCompilationGuide. for above issue I have also checked http://unix.stackexchange.com/questions/34023/ffmpeg-error-while-loading-shared-libraries-libtheoraenc-so-1 but not able to resolve my issue.

    My command is : /root/bin/ffmpeg -i /home/pulsebrk/public_html/beta/user_uploads/6/1148a008470721f06c8dc71efa70622f99799e91.avi -acodec libvorbis -ac 2 -ab 96k -ar 44100 -b 345k -s x /home/pulsebrk/public_html/beta/user_uploads/6/1148a008470721f06c8dc71efa70622f99799e91.ogv and error is : /root/bin/ffmpeg : error while loading shared libraries : libtheoraenc.so.1 : cannot open shared object file : No such file or directory

    libtheroa version is : 1.1.1 please anyone drive me for above issue.

  • Kill all ffmpeg processes which open repeatedly c#

    20 janvier 2018, par MinhLee

    i’m new to C# and i’m trying to create a tool based on ffmpeg to convert video.
    As title, i did google search and find out many ways to kill ffmpeg process, but in my case, for example i got 10 videos, which means 10 ffmpeg processes will be created one by one. If i closed form during 1st video, 9 others will be created sequently in background.

    Is there any effective ways to stop ffmpeg to create process ?