Advanced search

Medias (3)

Tag: - Tags -/plugin

Other articles (102)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 February 2011, by

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 May 2011, by

    This page lists some websites based on MediaSPIP.

On other websites (16734)

  • avformat/hls: add option for the m3u8 list load max times

    18 November 2019, by Steven Liu
    avformat/hls: add option for the m3u8 list load max times
    

    set max times for load m3u8 when the m3u8 list refresh do not with new
    segments any times.

    Signed-off-by: Steven Liu <lq@chinaffmpeg.org>

    • [DH] doc/demuxers.texi
    • [DH] libavformat/hls.c
  • avformat/dhav: Do not evaluate avio_size() multiple times

    6 June, by Michael Niedermayer
    avformat/dhav: Do not evaluate avio_size() multiple times
    

    Code like FFMIN(MAX_DURATION_BUFFER_SIZE, avio_size(s->pb)) is not safe
    as FFMIN() is a macro and avio_size() is thus evaluated multiple
    times

    Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dhav.c
  • Reverse video and loop 2 times ffmpeg

    13 September 2019, by Shahal

    I need to reverse the input video and concat it then the loop the output video twice.
    I was able to achieve reversing and concat it with original video using

    ffmpeg -i input.mkv -filter_complex "[0:v]reverse,fifo[r];[0:v][r] concat=n=2:v=1 [v]" -map "[v]" output.mkv

    But i want to stream_loop it 3 times. And also i like to know, if there’s any better ways to do it. The video will be a small one(4 seconds max.) and without audio.