
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (9747)
-
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.