Recherche avancée

Médias (91)

Autres articles (31)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4772)

  • matroskaenc : Validate chapter start and end times

    3 février 2015, par Vittorio Giovara
    matroskaenc : Validate chapter start and end times
    

    CC : libav-stable@libav.org
    Bug-Id : CID 1265717

    • [DH] libavformat/matroskaenc.c
  • Insert keyframe into m4v/mp4 at specific times

    31 janvier 2024, par reynoldsnlp

    I have a program for educators (written with electronjs framework) that plays videos, skipping to preset points in the video as defined in a companion JSON file. Sometimes there is a significant lag after a skip, and this answer suggests that the lag is there because of infrequent keyframes.

    



    Assuming this is correct, I would like to insert keyframes at exact points in the mp4 file where I know the player will skip to. However, some of these video files are already quite large, so I do not want to decrease the keyframe interval, thereby making the files even larger. I only need to force a handful of keyframes in the entire file.

    



    I would like to be able to pass an argument (to ffmpeg, for example) with the times at which I want to force keyframes. Preferably, I would like to do this without re-encoding the entire video (just like this unanswered question), but if I have to reencode the video, I could do that too.

    


  • avcodec/crystalhd : Explicitly set frame pts at all times

    23 avril 2017, par Philip Langdale
    avcodec/crystalhd : Explicitly set frame pts at all times
    

    Previously, the pts value was initialised to AV_NOPTS_VALUE and so
    it was not necessary to always set it. Now, with the new-new decode
    API, this is no longer true. I'm not sure why I avoided setting the
    pts when the decoder value was also AV_NOPTS_VALUE - it clearly
    wouldn't have changed anything previously, but here we are.

    Failing to do this, means the frame pts will be some random uninitalised
    value.

    • [DH] libavcodec/crystalhd.c