
Recherche avancée
Autres articles (86)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (13586)
-
FFmpeg .mov file strange video length
15 août 2016, par John Doe 2I created a .m2v file using ffmpeg like this :
ffmpeg -framerate 1/300 -s 720x576 -i img%3d.jpg -c:v mpeg2video -b:v 2000k -r 5 video.m2v
This worked successfully, but if I right click on the
.m2v
file and go to details and scroll to video length I get this information which is really strange ( Using Windows 10) :Video
Length: 256204778:48:05If I run the .mov file with a program like
PowerDVD
the length of the video is5 minutes
long.Why does this happen ?
-
opencv dont receive camera stream
11 juillet 2022, par Ofek nourianI have a simple IP camera connected to a video encoder "barracuda haivision S-280E-SDI"
I can receive the camera feed just fine with vlc, using the folowing URL :




rtsp ://10.5.1.2:554




then, I tried to play the video with python and opencv, using the following code :


cap = cv2.VideoCapture('rtsp://10.5.1.2:554', cv2.CAP_FFMPEG)

while cap.isOpened():
 ret, frame = cap.read()
 cv2.imshow('frame', frame)
 if cv2.waitKey(1) == ord(1):
 break
cap.release()
cap.destroyALLWindows()



but I get Error message :




[rtsp @ 0000219d1e4e580] method SETUP failed : 500




why does it happen ? what can I do to fix it ?


-
How do we redirect the output of 1 ffmpeg processing as input in the same command ?
9 septembre 2020, par FarhanI want to attach 2 videos using hstack filter and this is what I am doing, resizing 1 of the video files (to match same height) and then proceeding to merge. This is happening as 2 different steps,


- 

ffmpeg -y -i inputVideo1 -vf scale=-2:900 outputVideo1
ffmpeg -y -i outputVideo1 -i inputVideo2 -c:v libx264 -filter_complex hstack outputVideo2.mp4






This is taking longer time. How do I make this happen in a single step ? Something like,


ffmpeg -i inputVideo1 (something here) outputVideo1 (take this as input) -i inputVideo2 (hstack and stuff) outputVideo2.mp4```