Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (64)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (5800)

  • avformat/http: Ensure same protocol in ff_http_do_new_request2

    23 avril, par Zhao Zhili
    avformat/http: Ensure same protocol in ff_http_do_new_request2
    

    This can happen for HLS with AES-128 at the middle of m3u8, so old
    protocol is https while new protocol is crypt+https.

    And change the log level from ERROR to INFO when protocol/host/port
    don't match. User should prepared for this function to fail and
    retry with new connection.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavformat/http.c
  • avformat/dashenc : Simplify getting format string

    6 septembre 2023, par Andreas Rheinhardt
    avformat/dashenc : Simplify getting format string
    

    A switch is simpler than a lookup over a table with
    three entries, only two of which can happen at all.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/dashenc.c
  • Adding and reading timestamp to an image using ffmpeg

    17 novembre 2013, par Andrew Simpson

    I am not sure if i should be posting this type of question here and I have not uploaded any code as I am talking about concepts.

    I have a C# winform desktop application.

    It produces a flow of jpegs that have derived from a motion detection algorithm.

    I use the Graphics.DrawText to add a time stamp directly onto the image when it was created.

    I then use ffmpeg to produce a ogg video file.

    When i play the video file back I obviously see the image with the time stamp.

    What I would like to be able to do is read in code the time stamp that is on every image. I had thought of using some sort of OCR to do this but it seems overkill to me. I also have considered creating a separate text file that acts as the 'index' of the video file. But then I have to manage the 'transaction' between 2 different files.

    Corruption to the text file could happen.

    I would like a way of encapsulating this information to be easily read by my C# code.

    Has anyone had any experience doing this ? Any recommendations pls ?

    Many Thanks