Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (86)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11121)

  • Process Multiple Streams using ffmpeg-python

    27 novembre 2019, par C Dorman

    I have a MPEG-2 TS with a stream of video and a steam of KLV metadata. I can use ffmpeg-python to process each of these streams independently. For example, I can get the video stream, process each frames using numpy as shown in the docs. I can also get the data stream and show it in following way (using the library klvdata) :

    process = (
       ffmpeg
           .input(in_filename)
           .output('pipe:', format='data', codec='copy', map='data-re')
           .run_async(pipe_stdout=True, pipe_stderr=True)
    )

    for packet in klvdata.StreamParser(process.stdout.read()):
       packet.structure()

    process.wait()

    How do I do these at the same time ? I need to split the TS data into its streams and process them both, keeping them in sync. ffmpeg by itself can demultiplex the streams into separate files, but how do I handle the streams in python. The KLV has information that I want to show on top of the video stream (recognition boxes).

  • lavf/movenc : Use a dynamic buffer when writing the mfra box

    23 juin 2020, par Derek Buitenhuis
    lavf/movenc : Use a dynamic buffer when writing the mfra box
    

    When doing streamed output, with e.g. +dash, if the mfra box ended
    up being larger than the AVIOContext write buffer, the (unchecked)
    seeking back to update the box size would silently fail and produce
    an invalid mfra box.

    This is similar to how other boxes are written in fragmented mode.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/movenc.c
  • MSE video fragments [closed]

    21 juin 2024, par Bogdan Rusu

    I am trying to build a Javascript web streammer, which uses MediSource and a buffer.&#xA;I append to the buffer every new fragment that is comming, which allows me to stream a video.

    &#xA;

    To be more in context, its done with MPEG DASH. I have the video init.mp4 file and the m4s fragments.

    &#xA;

    However, I want to add some videos that are pure mp4 video, and I cannot append them to the buffer, since they are not fragments related to the first stream. I was thinking about converting them to m4s fragment, but I don't understand how to do it. As far as I've read, m4s fragments are mp4 videos without the initial metadata and some other atoms/boxes removed.

    &#xA;

    Is there a way to convert a mp4 video to one big m4s segment of the same duration and to properly append it to the MediaSource buffer ? Is there a way to manually create a m4s segment from a mp4 video ?

    &#xA;

    I tried multiple tools such as Bento4 and some ffmpeg commands that converts the mp4 video in a mp4 fragment. But every time I append it to the buffer, the video stops and cannot read further. Especially with chrome.

    &#xA;

    With bento4, after I mp4fragment, chrome can't seem to play the second fragment and the player always stops.

    &#xA;