
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (43)
-
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (6160)
-
In libav "rtmp ://url live=1" is not working as in FFmpeg
17 janvier 2017, par Yuvraj KakkarI am trying to play live rtmp stream, streamed via Red5 server.
Command used is
ffmpeg -i "rtmp ://IP/live/1234 live=1" -f flv rtmp ://IP/live/1234_56
The above command for live streaming works well with ffmpeg on Window OS. But unable to stream live rtmp video below command is run on libav ,Ubuntu OS using avconv tool.avconv -i "rtmp ://IP/live/1234 live=1" -f flv rtmp ://IP/live/1234_56
Even i used *rtmp_live* AVOption to play live stream or to replace live=1 parameter as given below-
avconv -i "rtmp ://IP/live/1234 rtmp_live" -f flv rtmp ://IP/live/1234_56But this command doesn’t work. Please tell me how to use rtmp_live or live=1 with avconv tool
Thanks in advance.
-
Convert live flv rtmp to hls with FFMPEG
12 juin 2016, par mikel atefUbuntu with rtmp nginx start live flv audio
but it’s not working with Android browsers
ffmpeg -y -loglevel warning -f dshow -i video="screen-capture-recorder" -vf crop=690:388:136:0 -r 30 -s 962x388 -threads 2 -vcodec libx264 -vpre baseline -vpre my_ffpreset -f flv rtmp:///live/myStream.sdp
-
how to make live rtsp player using ffmpeg ?
20 avril 2018, par geeeekI am creating an rtsp live viewer using ffmpeg. I have a question about video delay, so I ask.
At beginning play live rtsp, Video delay is about 2 seconds on general movie player(vlc, gom). However, when the playback speed is increased, the delay is reduced and the video delay is shortened to about 300 ms.
I do not know how to reduce the delay to speed up or speed up this playback on my ffmpeg player.
It seems like I can use something like av_seek_frame, but it does not work.
How can I reduce live rtsp video delay with ffmpeg ?In summary, I’d like to get the latest frame to be av_read_frame in live rtsp.