
Recherche avancée
Autres articles (111)
-
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 -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (9911)
-
obtain RTSP Describe info and screenshot [closed]
26 juillet 2024, par Charlie Bronsongood morning, given an rtsp streaming that responds 200 to a request and has both PLAY and DESCRIBE options, how can I capture a screenshot in jpg without running into errors like 400 Bed Request, using a command line tool like ffmpeg ?
there are other answers on the site but without knowing the nature of streaming how can this operation be best carried out ?


I found very little documentation online


I tried with ffprobe and ffmpeg, in tcp and udp, but each camera has its own options and before using ffmpeg I should understand what the streaming settings are.


-
Anomalie #4540 : Accessibilité des boutons radios et checkboxes
5 mars 2021, par cedric -Les styles supplémentaires sont intégrés et le formulaire charte de référence mis à jour.
A noter :
- l’ajout d’une classe sur les fieldset standard est possible, mais pas backward compatible : aucun formulaire dans la nature ne dispose de cette classe et se reposer dessus veux dire qu’on aura une apparence cassée, sauf à forcer de reprendre le html partout
- il reste à corriger le html des formulaire du core donc pour se mettre en conformité -
How can play video in openCV with audio the same time
26 janvier 2021, par red_antI'm trying to play video using openCV but it only show video without sound can you help me to resolve that please, Here is my code.


import cv2

from ffpyplayer.player import MediaPlayer


video = cv2.VideoCapture('videos/nature.mp4')
player = MediaPlayer('videos/nature.mp4')

while True:
 # read video frame by frame
 isTrue, frame = video.read()
 audio_frame, val = player.get_frame()
 cv2.imshow('Video', frame)
 
 if val != 'eof' and audio_frame is not None:
 #audio
 img, t = audio_frame
 
 if cv2.waitKey(28) & 0xFF == ord('q'):
 break
 
video.release()
cv2.destroyAllWindows()



I tried with ffpyplayer but i got this error on my macOS.


mugisha-MBP:openCV jclaude$ python3 read.py
Traceback (most recent call last):
 File "/Users/Desktop/SCRIPT/openCV/read.py", line 5, in <module>
 from ffpyplayer.player import MediaPlayer
 File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/ffpyplayer/player/__init__.py", line 10, in <module>
 from ffpyplayer.player.player import MediaPlayer
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/ffpyplayer/player/player.cpython-39-darwin.so, 2): Symbol not found: _objc_opt_class
 Referenced from: /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/ffpyplayer/player/../.dylibs/libSDL2-2.0.0.dylib (which was built for Mac OS X 10.15)
 Expected in: /usr/lib/libobjc.A.dylib
 in /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/ffpyplayer/player/../.dylibs/libSDL2-2.0.0.dylib
</module></module>