Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (79)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7548)

  • lavc/vvc : Remove left shifts of negative values

    20 janvier 2024, par Frank Plowman
    lavc/vvc : Remove left shifts of negative values
    

    VVC specifies << as arithmetic left shift, i.e. x << y is equivalent to
    x * pow2(y). C's << on the other hand has UB if x is negative. This
    patch removes all UB resulting from this, mostly by replacing x << y
    with x * (1 << y), but there are also a couple places where the OOP was
    changed instead.

    Signed-off-by : Frank Plowman <post@frankplowman.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/vvc/vvc_ctu.c
    • [DH] libavcodec/vvc/vvc_filter.c
    • [DH] libavcodec/vvc/vvc_inter.c
    • [DH] libavcodec/vvc/vvc_inter_template.c
    • [DH] libavcodec/vvc/vvc_mvs.c
  • fftools/ffmpeg : deprecate -filter_script

    12 janvier 2024, par Anton Khirnov
    fftools/ffmpeg : deprecate -filter_script
    

    It is equivalent to -/filter.

    • [DH] doc/ffmpeg.texi
    • [DH] doc/filters.texi
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_mux_init.c
    • [DH] fftools/ffmpeg_opt.c
    • [DH] tests/fate/filter-audio.mak
    • [DH] tests/fate/filter-video.mak
  • avfilter : always call ff_default_query_formats

    20 octobre 2023, par Niklas Haas
    avfilter : always call ff_default_query_formats
    

    Even if a query func is set. This is safe to do, because
    ff_default_query_formats is documented not to touch any filter lists
    that were already set by the query func.

    The reason to do this is because it allows us to extend
    AVFilterFormatsConfig without having to touch every filter in existence.
    An alternative implementation of this commit would be to explicitly add
    a `ff_default_query_formats` call at the end of every query_formats
    function, but that would end up functionally equivalent to this change
    while touching a whole lot more code paths for no reason.

    As a bonus, eliminates some code/logic duplication from this function.

    • [DH] libavfilter/avfiltergraph.c