Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (75)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (4497)

  • 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

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

    


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