
Recherche avancée
Autres articles (53)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
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 -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (7924)
-
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 ?
-
vp8 : use a fixed-size edge emu buffer
20 janvier 2014, par Anton Khirnov -
FFmpeg : How to open a file with an apostrophe in its name ?
5 février 2020, par EmielBossI am trying to concatenate a bunch of audio files with the following command :
ffmpeg -f concat -safe 0 -i Filelist.txt -c copy out.mp3
Unfortunately, one of my audio files has an apostrophe in its name, which are used to indicate the start and end of the filename :
file 'Murfy's in Trouble!.mp3'
giving the following error :
Impossible to open 'Murfy%s'
Filelist.txt: No such file or directoryI tried escaping it with
\
and%
, but those don’t work. Is there any way around this without changing all my filenames ?