Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

Sur d’autres sites (12815)

  • avformat/utils : Remove redundant save+restore

    8 octobre 2019, par Andreas Rheinhardt
    avformat/utils : Remove redundant save+restore
    

    If the size of the input packet is zero, av_grow_packet() used to call
    av_new_packet() which would initialize the packet and (in particular)
    reset the pos field. This behaviour (which was never documented and
    arguably always contradicted the documented behaviour) was changed in
    2fe04630. This means that it is unnecessary to save and restore the
    packet's position in append_packet_chunked().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/utils.c
  • Use MANGLE in cavsdsp.c to save two registers using gcc.

    19 avril 2014, par Carl Eugen Hoyos
    Use MANGLE in cavsdsp.c to save two registers using gcc.
    

    Fixes compilation with !HAVE_6REGS.

    • [DH] libavcodec/x86/cavsdsp.c
  • Save changed frame in FFMPEG API

    23 mars 2015, par Vaigard

    I extracts frames from H.264 video by avcodec_decode_video2(pCodecCtx, pFrame, &amp;frameFinished, &amp;packet); procedure (like in example from https://github.com/chelyaev/ffmpeg-tutorial/blob/master/tutorial01.c) and changed values of samples. How I can save these changes in original video ? After the change of the frame by the pointer he does not change.

    And I have a problem with avcodec_encode_video2 function : assertion avctx->codec->encode2 failed at .... What does this mean ?

    Thank you.