Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (58)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (11181)

  • 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
  • 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;

  • 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