Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (70)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (12643)

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

    


  • GOP structure via FFmpeg

    17 juillet 2021, par chronosynclastic

    I have two questions regarding the Group-of-Pictures (GOP) in MPEG4 Video (both for MPEG4 Part2 and H.264) :

    



      

    1. How can I extract the GOP structure and size of a video sequence using FFmpeg ? I know that the av_get_picture_type_char function of the AVPicture struct yields picture types for each frame, but I wonder if there is a more direct method to obtain the GOP information ?

    2. 


    3. How can I detect whether the sequence has open GOPs or closed GOPs, i.e. whether B frames from one GOP are allowed to refer to the I and P frames in an adjacent GOP ?

    4. 


    


  • GOP structure via FFmpeg

    25 septembre 2015, par Serhan

    I have two questions regarding the Group-of-Pictures (GOP) in MPEG4 Video (both for MPEG4 Part2 and H.264) :

    1. How can I extract the GOP structure and size of a video sequence using FFmpeg ? I know that the av_get_picture_type_char function of the AVPicture struct yields picture types for each frame, but I wonder if there is a more direct method to obtain the GOP information ?

    2. How can I detect whether the sequence has open GOPs or closed GOPs, i.e. whether B frames from one GOP are allowed to refer to the I and P frames in an adjacent GOP ?