
Recherche avancée
Autres articles (46)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (6809)
-
swscale/output : add full chroma interpolation support for x2rgb10
30 octobre 2024, par James Almer -
ffmpeg real-time buffer too full or near too full frame dropped, I even tried increasing rtbufsize. What could be going wrong ?
21 mai 2024, par Ali AzlanWe have a software where we capture the stream from the camera connected to the laptop or device using ffmpeg python,


ffmpeg
 .input(video, s='640x480', **self.args) //tried with rtbufsize=1000M (enough I suupose/ also sometimes the error does not occur even on default rtbufsize which is around 3MB)
 .output('pipe:', format='rawvideo', pix_fmt='rgb24')
 .overwrite_output()
 .run_async(pipe_stdout=True) 



majority of the times when I start the software like the software is still initiating we receive the following error, I have also received this error when the software has initiated fully and completely and it is running from a long time like after 12hrs or more.




Error : [dshow @ 000002248916e240] real-time buffer [Integrated
Camera] [video input] too full or near too full (80% of size : 3041280
[rtbufsize parameter]) ! frame dropped !
Last message repeated 1 times [dshow @ 000002248916e240] real-time buffer [Integrated Camera] [video input] too full or near too full
(101% of size : 3041280 [rtbufsize parameter]) ! frame dropped !




What are the things we possibly might be doing wrong ?


Edit 1 :


below is the code to consume the frame captured in the video using ffmpeg


def frame_reader(self):
 while True:
 in_bytes = self.process.stdout.read(self.width * self.height * 3)
 if not in_bytes:
 break
 try:
 in_frame = (
 np
 .frombuffer(in_bytes, np.uint8)
 .reshape([self.height, self.width, 3])
 )
 frame = cv2.resize(in_frame, (640, 480))
 frame = cv2.cvtColor(frame, cv2.COLOR_RGB2BGR)
 except Exception as e:
 logger.error(e, exc_info=True)
 in_frame = (
 np
 .frombuffer(in_bytes, np.uint8)
 )

 if not self.q.empty():
 try:
 self.q.get_nowait()
 except queue.Empty:
 pass
 self.q.put(frame)



-
checkasm : hevc_pel : Check the full output in hevc_epel/hevc_qpel
12 mars 2024, par Martin Storsjö