
Recherche avancée
Autres articles (60)
-
Submit bugs and patches
13 avril 2011Unfortunately 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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (10511)
-
avformat/hlsenc : Handle NULL input in IO open and close utility functions
15 décembre 2017, par Karthick J -
avformat_open_input causes exception on RTP stream open
3 avril 2014, par user3283475I'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, &_expTime};
// Open video file
if(avformat_open_input(&pFormatCtx, Filename , NULL,NULL)!=0)//ntdll.dll exception when I try to open rtp stream
return -1; // Couldn't open fileCan 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 Paksmy 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.