Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (30)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5909)

  • Deinterlacing in OpenCV

    17 avril 2017, par Yves Daoust

    I have a video stream stored in an MPEG file. Interlacing is strongly visible where there is motion and I need to de-interlace.

    When doing it by software (averaging every other line), the result is not satisfactory, strong artifacts remain at places.

    So I was wondering if it was possible to enforce deinterlacing somewhere in the decoding chain (which is ffmpeg), or even decode the odd/even fields separately. I am using the VideoCapture capture object, which doesn’t seem to provide any level of control.

    It could also be that the stream was MPEG’d without caring for interlacing, but I have no means to check that. To make things a little worse, OpenCV does not even return the FourCC of the stream.

  • Why does this code detects images as video and how can I fix it ?

    18 novembre 2022, par Arturo

    This method is detecting .jpg pictures as video. Why is that ? How can I fix it ?

    


    def is_video(self) -> bool:
    try:
        res = self.video_metadata['codec_type'] == 'video'
        logger.info(f"Video.is_video() -> {res}")
        return res
    except:
        return False


    


    I'm getting the metadata with

    


    ffmpeg.probe(self.path, select_streams = stream)['streams'][0]


    


    I'm using the metadata for more things, that's why I've used ffmpeg in this method.

    


  • How to make FFMPEG insert dynamic data in a video stream ?

    10 juin 2016, par Bepeho

    I’m trying to add an dynamic overlay to a file FFMPEG is generating for me.

    The overlay must display data received in real-time (let’s say the speed of a car where the video is being recorderd)

    Note that my question is not about displaying things in the video, but about how to have FFMPEG receive this data so it can display them.

    Has anyone done this before ? How ?

    Thank you