Recherche avancée

Médias (91)

Autres articles (32)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

  • avcodec/mpeg12dec : parse A53 caption data embedded in SCTE-20 user data

    15 mars 2017, par Aman Gupta
    avcodec/mpeg12dec : parse A53 caption data embedded in SCTE-20 user data
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg12dec.c
    • [DH] tests/fate/subtitles.mak
    • [DH] tests/ref/fate/sub-cc-scte20
  • How to save a vvideo from a RTSP server using Ffmpeg in C++ ?

    20 septembre 2021, par Tolga

    I am using Ffmpeg remuxing example code to save a mp4 file into another file. However my actual goal is saving the video from a RTSP server. The example works fine with the normal .mp4 files but when I try to save the video from RTSP Server I get following error on command prompt.

    &#xA;

    [mp4 @ 02F9A8C0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 18000 >= 3000&#xA;

    &#xA;

    The RTSP server is created on my computer for testing using python gstream. I used the script here.

    &#xA;

    Ffmpeg code in C++ is below where error occurs.

    &#xA;

            iCamera->stream = iCamera->fmt->streams[iCamera->pkt->stream_index];&#xA;        iCamera->pkt->stream_index = map->stream_map[iCamera->pkt->stream_index];&#xA;        oCamera->stream = oCamera->fmt->streams[iCamera->pkt->stream_index];&#xA;&#xA;        iCamera->pkt->pts = av_rescale_q_rnd(iCamera->pkt->pts, iCamera->stream->time_base, oCamera->stream->time_base, AVRounding(AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX));&#xA;        iCamera->pkt->dts = av_rescale_q_rnd(iCamera->pkt->dts, iCamera->stream->time_base, oCamera->stream->time_base, AVRounding(AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX));&#xA;        iCamera->pkt->duration = av_rescale_q(iCamera->pkt->duration, iCamera->stream->time_base, oCamera->stream->time_base);&#xA;        iCamera->pkt->pos = -1;&#xA;        &#xA;        if (av_interleaved_write_frame(oCamera->fmt, iCamera->pkt)) {&#xA;            printf("Error occured while muxing packet.\n"); exit(1);&#xA;        }&#xA;

    &#xA;

  • avcodec/h264 : create user data unregistered SEI side data for H.264

    11 juin 2020, par Limin Wang
    avcodec/h264 : create user data unregistered SEI side data for H.264
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/h264_sei.c
    • [DH] libavcodec/h264_sei.h
    • [DH] libavcodec/h264_slice.c
    • [DH] tests/ref/fate/mov-zombie