Recherche avancée

Médias (91)

Autres articles (46)

  • Gestion générale des documents

    13 mai 2011, par

    Mé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 2013

    Puis-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, par

    Cette 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
    swscale/output : add full chroma interpolation support for x2rgb10
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswscale/output.c
    • [DH] libswscale/utils.c
    • [DH] tests/ref/fate/filter-pixfmts-scale
  • 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 Azlan

    We have a software where we capture the stream from the camera connected to the laptop or device using ffmpeg python,

    &#xA;

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

    &#xA;

    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.

    &#xA;

    &#xA;

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

    &#xA;

    &#xA;

    What are the things we possibly might be doing wrong ?

    &#xA;

    Edit 1 :

    &#xA;

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

    &#xA;

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

    &#xA;

  • checkasm : hevc_pel : Check the full output in hevc_epel/hevc_qpel

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

    Previously it only checked half the output in 8 bit per pixel mode,
    as the output actually is 16 bit elements here.

    Signed-off-by : J. Dekker <jdek@itanimul.li>

    • [DH] tests/checkasm/hevc_pel.c