
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (61)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (5243)
-
automatically show blue screen in ffmpeg when live video source disconnects
13 janvier 2015, par user1913115i’m capturing a live source using ffmpeg :
ffmpeg -i rtsp://192.168.1.143/source -codec copy output.mp4
which works great. the ip address is an address of an RTSP proxy server which takes in the camera itself as the source. i.e. my setup :
camera ->> RTSP proxy ->> ffmpeg(output)
if camera disconnects (accidentally or on purpose) the recording stops (obviously) and only continues when I re-connect the camera.
Question : is there a way for ffmpeg to ’fill’ the down time with blue screen or green screen of some sort ?
i know i can ’play’ a still image of a green screen using ffmpeg to record an mp4 out of it :ffmpeg -loop 1 -y -re -i green.jpg -r 30 -vcodec libx264 -an -f h264 greenvideo.mp4
so i could set it up this way :
ffmpeg(green) ->> ffmpeg(output)
but I would need to run the command manually. is there a way for ffmpeg(output) to automatically detect the disconnect and use green.jpg as a ’video’ source ? or i can even create a 5-minute green.mp4 video of just green screen.
put it another way, is it possible for ffmpeg to automatically switch input sources if one goes down ?
-
Révision 22976 : report de r22975
1er avril 2016, par brunobergot@gmail.comreport de r22970 : transcoder les crochets des urls en notation "%" pour la balise SELF
-
ffmpeg not creating video from images
16 décembre 2014, par Knight RiderI have read this Create Video using ffmpeg
Still I am not able to get it.
I have written this shell command in PHPecho $make_movie = "$ffmpeg -framerate 1/5 -i $folder_name/img%03d.png -c:v libx264 -r 25 -pix_fmt yuv420p $folder_name/output.mp4";
This gives output
ffmpeg\bin\ffmpeg.exe -framerate 1/5 -i ankit/img%03d.png -c:v libx264 -r 25 -pix_fmt yuv420p ankit/output.mp4
if(shell_exec($make_movie)){
echo "<br />Movie Created..<br />";
}
else{
echo "<br />Movie Creation Error..<br />";
}The Output is Movie Creation Error that means the Shell Command is not executing ?
Questions :
- What is wrong ?
- For future use, any debugging methods for this ?
I ran the same command on cmd and it made the video..!!!