Recherche avancée

Médias (91)

Autres articles (32)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (5124)

  • Revision ac53c41e64 : Merge "Tile based adaptive mode search in RD loop"

    25 octobre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_encoder.h



    Merge "Tile based adaptive mode search in RD loop"

  • movenc : Set the last packet duration based on the next packet when autoflushing

    9 mars 2015, par Martin Storsjö
    movenc : Set the last packet duration based on the next packet when autoflushing
    

    When automatically flushing fragments based on set conditions
    (fragmentation on keyframes, after some interval or byte size),
    we already have the next packet for one stream - use this for setting
    the duration of the last packet in the flushed fragment correctly.

    This avoids having to adjust the timestamp of the first packet in
    the new fragment since the last duration was unknown.

    Unfortunately, this only works for automatic flushing (not for
    caller-triggered flushing, like in the dash muxer), and only for the
    one single track that triggered the flushing. The duration of the
    last sample in all other tracks still is dependent on AVPacket
    duration (or heuristics).

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

    • [DH] libavformat/movenc.c
  • ffmpeg : Apply a time-based expr to control intensity of lowpass, highpass, aphaser, or aecho [closed]

    17 mai 2024, par Wes Modes

    I am procedurally constructing complexFilters for ffmpeg via fluent-ffmpeg. My fluent-ffmpeg complex filters look like :

    &#xA;

    {&#xA;   "filter": "volume",&#xA;   "options": {&#xA;       "volume": "min(1, max(0, ((cos(PI * t * 1 / 13) * 1 &#x2B; cos(PI * t * 1 / 7) * 0.5 &#x2B; cos(PI * t * 1 / 3) * 0.25) &#x2B;&#xA;-0.5 ) * 0.75 * -1 &#x2B; 0.5))",&#xA;       "eval": "frame"&#xA;    },&#xA;    "inputs": "track_1_output",&#xA;    "outputs": "track_1_adjusted"&#xA;},&#xA;

    &#xA;

    Note that I am using an expression to determine the volume dynamically.

    &#xA;

    Here I'm testing on the command line, to understand the mysteries of lightly-documented ffmpeg filters. I'm fading in and out two sources, intertwined in the output. Now I want to apply lowpass, highpass, aphaser, and/or aecho to the transitions using a time-based expr.

    &#xA;

    I've already succeeded using the volume filter to fade the sources in and out (Note that the sine has reversed polarity for the second volume filter) :

    &#xA;

    # working fade in/out&#xA;ffmpeg -i knox.mp3 -i static.mp3 -filter_complex \&#xA;"[0:a] \&#xA;    volume = &#x27;min(1, max(0, 0.5 &#x2B; 0.5 * cos(PI * t / 5)))&#x27;: eval=frame \&#xA;    [a0]; \&#xA;[1:a] \&#xA;    volume = &#x27;min(1, max(0, 0.5 - 0.5 * cos(PI * t / 5)))&#x27;: eval=frame \&#xA;    [a1]; \&#xA;[a0][a1]&#xA;    amix = inputs=2: duration=shortest" \&#xA;-c:a libmp3lame -q:a 2 output.mp3&#xA;

    &#xA;

    ffmpeg -filters says that lowpass has time-based support :

    &#xA;

      T.. = Timeline support&#xA; TSC lowpass           A->A       Apply a low-pass filter with 3dB point frequency.&#xA;

    &#xA;

    How can I similarly apply these other filters to source1 using a time-bassed expr ? I was unsuccessful in figuring out lowpass and highpass :

    &#xA;

    # applying a lowpass filter&#xA;ffmpeg -i knox.mp3 -i static.mp3 -filter_complex \&#xA;"[0:a] \&#xA;    volume = &#x27;min(1, max(0, 0.5 &#x2B; 0.5 * cos(PI * t / 5)))&#x27;: eval=frame, \&#xA;    lowpass=f=3000: mix=&#x27;0.5 &#x2B; 0.5 * cos(PI * t / 5)&#x27; \&#xA;    [a0]; \&#xA;[1:a] \&#xA;    volume = &#x27;min(1, max(0, 0.5 - 0.5 * cos(PI * t / 5)))&#x27;: eval=frame \&#xA;    [a1]; \&#xA;[a0][a1]&#xA;    amix = inputs=2: duration=shortest" \&#xA;-c:a libmp3lame -q:a 2 output.mp3&#xA;

    &#xA;

    With the resultant error :

    &#xA;

    [Parsed_lowpass_1 @ 0x7f9a72005c00] [Eval @ 0x7ff7bec423d8] Undefined constant or missing &#x27;(&#x27; in &#x27;t/5)&#x27;&#xA;[Parsed_lowpass_1 @ 0x7f9a72005c00] Unable to parse option value "0.5 &#x2B; 0.5 * cos(PI * t / 5)"&#xA;Error applying option &#x27;mix&#x27; to filter &#x27;lowpass&#x27;: Invalid argument&#xA;

    &#xA;

    What complicated fffmpeg faerie magic is needed to make some of the filters other than volume controlled by a time-based expr ?

    &#xA;