Recherche avancée

Médias (91)

Autres articles (35)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (4027)

  • avfilter/asrc_flite : Remove double ' ;'

    7 octobre 2021, par Andreas Rheinhardt
    avfilter/asrc_flite : Remove double ' ;'
    

    (Inside a function a stray ' ;' is an empty statement ; outside of
    a function it is actually invalid, but compilers happen to accept
    it without complaint (unless e.g. using -pedantic).)

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/asrc_flite.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

  • 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