
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (90)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (11438)
-
Can I use ffserver to stream multiple video files from multiple users ?
4 août 2017, par zeroh7First, forgive me for not having good English.
I learned about ffmpeg and I’m studying it.
I have a question, but I can not find any related documents on the Internet.
Here are my questions.
-
Can I use ffserver to stream multiple video files from multiple users ?
-
Can I use the ffmpeg command to generate and destroy a feed in server.conf
please : )
-
-
Ignore Connection Error on Multiple Rtsp Stream in FFmpeg
17 décembre 2022, par Onur KülekciSorry for my bad English. My problem is ;
ffmpeg command closes completely when one of the streams cannot be reached while multicasting. when it can't reach a single rtsp address, how can it ignore it and continue broadcasting from the others ?


Example ;


ffmpeg -i rtsp://5.63.151.4:443/atv/atv2 -map 0 c:\atv.flv -i rtsp://live.sabah.com.tr:443/ahaber/ahaber3 -map 1 c:\ahaber.flv



if it can't reach the 2nd link, keep playing the first one


Thank you !


-
AVFormatContext with alsa,v4l2 to output AVFormatContext
8 mars 2017, par GeneralN00bsRead first : I’m a new guy with Stack Overflow, and poor English, so please excuse my English, which is really bad.
I’m trying to do web streaming with open input device ; audio, video devices to HTML5 video.
for example, this project using ffmpeg command to like this :
ffmpeg -f v4l2 -i <video devices="devices"> -f alsa -i <audio devices="devices"> -f mpegts -codec:v mpeg1video -b:v 800k -framerate 24 -codec:a mp2 -b:a 128k http://localhost:8082/secret
</audio></video>Here’s the main question : I can open 2 avformatcontext with C language like this :
AVFormatContext* get_ctx(const char* dev,const char* driver,AVDictionary *options)
{
AVFormatContext *ictx = avformat_alloc_context();
AVInputFormat *fmt = NULL;
//get input format.
fmt = av_find_input_format(driver);
//if have options
if(options){
//open device with options
if(avformat_open_input(&ictx,dev,fmt,&options)<0){
printf("get device with options failed.\n");
return NULL;
}
//find stream info.
if(avformat_find_stream_info(ictx,&options)<0){
printf("get stream info with options failed.\n");
return NULL;
}
//not have options.
}else{
if(avformat_open_input(&ictx,dev,fmt,NULL)<0){
printf("get device failed.\n");
return NULL;
}
if(avformat_find_stream_info(ictx,NULL)<0){
printf("get stream info failed.\n");
return NULL;
}
}
av_dump_format(ictx,0,adev,0);
return ictx;
}Well, get v4l2 and alsa devices successfully using function above. but
I can’t figure it out (2 input avformatcontext) to output avformatcontext.
Any idea how can I am muxing 2 avformatcontext to output avformatcontext ?