
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (7318)
-
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 ?