Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (58)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Revert "fate/filter-video : add two tests for dnn_processing with frame format rgb24...

    29 janvier 2020, par Guo, Yejun
    Revert "fate/filter-video : add two tests for dnn_processing with frame format rgb24 and grayf32"
    

    The tests broke fate without SAMPLES and fate on some platforms.
    This reverts commit 95ade711eb4afb8b76a765ef6571e7934ad7f8cc.

    • [DH] tests/fate/filter-video.mak
    • [DH] tests/ref/fate/filter-dnn_processing-halve_first_channel_float
    • [DH] tests/ref/fate/filter-dnn_processing-halve_gray_float
  • avfilter : add hqx filter (hq2x, hq3x, hq4x)

    7 juin 2013, par Clément Bœsch
    avfilter : add hqx filter (hq2x, hq3x, hq4x)
    

    Partially fixes Ticket #3404 (xbr filter remaining)

    • [DH] Changelog
    • [DH] MAINTAINERS
    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_hqx.c
    • [DH] tests/fate/filter-video.mak
    • [DH] tests/ref/fate/filter-hq2x
    • [DH] tests/ref/fate/filter-hq3x
    • [DH] tests/ref/fate/filter-hq4x
  • Adding a color filter at specific intervals in ffmpeg

    9 avril 2015, par JamieL

    I am looking to add the color filter to a rtmp stream in ffmpeg at specific time intervals, say for 10 seconds every 10 seconds. I have tried two approaches. The first :

    -vf "color=#8EABB8@0.9:480x208,select='gte(t,10)*lte(t,20)' [color];[in][color] overlay [out]"

    This streams only the 10 seconds indicated by the select and applies the color filter rather than playing the whole stream and applying the filter to just those 20 seconds.

    I then learnt about split and fifo and tried this approach :

    -vf "[in] split [no-color], fifo, [with-color] overlay [out]; [no-color] fifo, select='gte(t,10)*lte(t,20)' [with-color]"

    I would expect this to play the entire stream, and then select the 10 seconds specified so that I can apply filters, but it does the same as first approach and just plays the 10 seconds selected rather than the entire stream.

    Thanks in advance.