Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (35)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

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

Sur d’autres sites (3360)

  • mpegts : pass MpegTSContext ptr explicitly

    8 juillet 2014, par Alexander V. Lukyanov
    mpegts : pass MpegTSContext ptr explicitly
    

    AVFormatContext->priv_data is not always a MpegTSContext, it can be
    RTSPState when decoding a RTP stream. So it is necessary to pass
    MpegTSContext pointer explicitly.

    Within libav, the write_section_data function doesn’t actually use
    the MpegTSContext at all, so this doesn’t change anything at the
    moment (no memory was corrupted before), but it reduces the risk of
    anybody trying to touch the MpegTSContext via AVFormatContext->priv_data
    in the future.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mpegts.c
  • vf_showinfo : minimum widths for some early fields

    15 janvier 2015, par Peter Cordes
    vf_showinfo : minimum widths for some early fields
    

    Depending on FPS, the pts_time string often changes length :
    ... pts_time:36.1 ...
    ... pts_time:36.1333 ...
    etc.

    The length changes make the output bounce around horribly, making it
    hard to scan down a column farther right than pts_time.

    The solution is to set minimum widths for n, pts, pts_time, and pos.
    This patch doesn’t touch any of the fields in mean / stddev.

    The widths aren’t intended to be wide enough that they’re never
    exceeded, but you’ll see only an occasional ripple to a new alignment,
    rather than bouncing. (Some fields, like pos, increase monotonically,
    which is why I left the minimum width for the field be smaller than it
    often gets to.)

    Signed-off-by : Peter Cordes <peter@cordes.ca>

    • [DH] libavfilter/vf_showinfo.c
  • flvdec : do not create any streams in read_header()

    11 octobre 2015, par Anton Khirnov
    flvdec : do not create any streams in read_header()
    

    The current muxer behaviour is to create streams in read_header() based
    on the audio/video presence flags, but fill in the stream parameters
    later when we actually get some packets for them. This is rather shady,
    since other demuxers set the stream parameters immediately when the
    stream is created and do not touch the stream codec context after that.

    Change the flv demuxer to behave in the same way as other similar
    demuxers — create the streams only when we get a packet for them.

    • [DBH] libavformat/flvdec.c