
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (56)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (4359)
-
FFmpeg RTSP + RTMP get errors
19 décembre 2017, par Akim BenchihaI’m working with live streaming on nginx. What I have is a RTSP (broadcast video) stream coming from a server and a RTMP stream coming from camera.
I combine them using ffmpeg.
I want to send a bool to the back-end using cURL when RTMP has been stopped or if RTSP is not found/stoppedHere the use case :
Send false to the back-end when the user stop recording the video (RTSP)
Send false to the back-end when the user stop the camera (RTMP)
Send true if everything is ok
NGINX config :
rtmp {
server {
listen 1935;
ping 30s;
notify_method get;
application ingest {
live on;
exec_kill_signal term;
idle_streams off;
exec_push /usr/local/bin/ffmpeg_push.sh $name ;
}
}
}FFMPEG
ffmpeg -i $rtspstream -i rtmp://localhost/ingest/$name -ignore_unknown -filter_complex "[0]scale=-1:-1[b];[1]scale=128:128[w];[b][w] overlay=10:10" -vcodec libx264 -x264opts keyint=20:min-keyint=1 -preset ultrafast -c:a aac -f flv rtmp://IPADDRESS/ingest/$streamname 1>>/var/log/ffmpeg/$name.log 2>>/var/log/ffmpeg/$name.log &
echo $! > /var/log/ffmpeg/${name}.pidThank you
-
stream server with multiple arrivals of ffmpeg streams
18 septembre 2020, par GamepigeekI am looking for the means to make a server which receives all the FFMPEG streams that we send to it (exactly like FFSERVER which is too old).


I want us to send with a line (for example) :


"ffmpeg",
"-loglevel fatal",
"-f fbdev",
"-r 30",
"-i / dev / fb0",
"-c: v h264_omx",
"-profile: v baseline",
"-b: v BITRATE",
"-flags: v + global_header",
"-bsf: v dump_extra",
"-f rawvideo",
"tcp: //127.0.0.1: 1234"



and receive this stream on another server and redistribute it on a smooth web page !


I research how to do for 2 days.


thank you


-
streaming to stream name and stream key is not working at youtube data api v3
8 décembre 2018, par Anirudha GuptaI crate a livestream and I got livestream ID and name from the api. I create the broadcast from youtube and got the broadcast id. When I bind the broadcast id and stream name. it’s bind but when I call the streamurl/name/key it’s just sending the straem there but not on the live broadcast event.
When I send to just streamurl+name. it does send the stream but it doesn’t show anywhere, not on livebroadcast or stream event.
Is there anything I am doing it wrong. I have call stream endpoint and have id and name. call the broadcast endpoint and got the id and now I called the bind and bind both together. I am not able to send the stream to that event. Anyone have idea over this.
Thanks