Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (74)

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

  • avcodec/movtextdec : Sanitize style entries

    7 décembre 2021, par Andreas Rheinhardt
    avcodec/movtextdec : Sanitize style entries
    

    There are three types of style entries which are redundant :
    a) Entries with length zero. They are already discarded.
    b) Entries that are equivalent to the default style :
    They can be safely discarded.
    c) Entries that are equivalent to the immediately preceding style
    if the start of the current style coincides with the end of the
    preceding style. In this case the styles can be merged.

    This commit implements discarding/merging in cases b) and c).
    This fixes ticket #9548. In said ticket each packet contained
    exactly one style entry that covered the complete packet with
    the exception of the last character (probably created by a tool
    that didn't know that the style's end is exclusive). Said style
    coincided with the default style, leading to a superfluous reset,
    which is now gone.

    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/movtextdec.c
  • fftools/ffmpeg_filter : Avoid inserting hflip filter

    18 décembre 2021, par Andreas Rheinhardt
    fftools/ffmpeg_filter : Avoid inserting hflip filter
    

    The transpose filter has modes equivalent to "rotation by 90°/270°"
    followed by horizontal flips.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_filter.c
  • lavu/tx : add an RDFT implementation

    21 janvier 2022, par Lynne
    lavu/tx : add an RDFT implementation
    

    RDFTs are full of conventions that vary between implementations.
    What I've gone for here is what's most common between
    both fftw, avcodec's rdft and what we use, the equivalent of
    which is DFT_R2C for forward and IDFT_C2R for inverse. The
    other 2 conventions (IDFT_R2C and DFT_C2R) were not used at
    all in our code, and their names are also not appropriate.
    If there's a use for either, we can easily add a flag which
    would just flip the sign on one exptab.

    For some unknown reason, possibly to allow reusing FFT's exp tables,
    av_rdft's C2R output is 0.5x lower than what it should be to ensure
    a proper back-and-forth conversion.
    This code outputs its real samples at the correct level, which
    matches FFTW's level, and allows the user to change the level
    and insert arbitrary multiplies for free by setting the scale option.

    • [DH] libavutil/tx.c
    • [DH] libavutil/tx.h
    • [DH] libavutil/tx_template.c