Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    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 février 2011, par

    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.

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

  • fate/jpeg2000 : add JPEG 2000 tests using ITU/ISO conformance materials

    14 avril 2023, par Pierre-Anthony Lemieux
    fate/jpeg2000 : add JPEG 2000 tests using ITU/ISO conformance materials
    

    Adds JPEG 2000 decoder tests using materials from the conformance suite specified in
    Rec. ITU-T T.803 | ISO/IEC 15444-4.

    The test materials are available at https://gitlab.com/wg1/htj2k-codestreams

    Signed-off-by : Pierre-Anthony Lemieux <pal@palemieux.com>

    • [DH] tests/Makefile
    • [DH] tests/fate/jpeg2000.mak
    • [DH] tests/ref/fate/jpeg2000dec-ds0_ht_01_b11
    • [DH] tests/ref/fate/jpeg2000dec-p0_01
    • [DH] tests/ref/fate/jpeg2000dec-p0_02
    • [DH] tests/ref/fate/jpeg2000dec-p0_03
    • [DH] tests/ref/fate/jpeg2000dec-p0_04
    • [DH] tests/ref/fate/jpeg2000dec-p0_05
    • [DH] tests/ref/fate/jpeg2000dec-p0_07
    • [DH] tests/ref/fate/jpeg2000dec-p0_08
    • [DH] tests/ref/fate/jpeg2000dec-p0_09
    • [DH] tests/ref/fate/jpeg2000dec-p0_11
    • [DH] tests/ref/fate/jpeg2000dec-p0_12
    • [DH] tests/ref/fate/jpeg2000dec-p0_14
    • [DH] tests/ref/fate/jpeg2000dec-p0_15
    • [DH] tests/ref/fate/jpeg2000dec-p0_16
  • How to create a lossy JPEG 2000 sequence with FFmpeg

    8 avril 2021, par florit

    I’d like to convert a movie to a lossy JPEG 2000 sequence with FFmpeg using libopenjpeg. I found -compression_level to control the compression but I‘m looking for a kind of variable bitrate control like -crf. Is this possible ?

    &#xA;

  • How to create a JPEG 2000 sequence with alpha channel with FFmpeg

    7 avril 2021, par florit

    How can I create a JPEG 2000 sequence preserving the alpha of an input video with FFmpeg ?

    &#xA;

    ffmpeg -i /path/to/movie_with_alpha.mov -c:v jpeg2000 -pix_fmt rgba /output/path/sequence_%04d.jp2&#xA;

    &#xA;

    … throws this info :

    &#xA;

    Incompatible pixel format &#x27;rgba&#x27; for codec &#x27;jpeg2000&#x27;, auto-selecting format &#x27;rgb24&#x27;&#xA;

    &#xA;

    I tried other options for -pix_fmt with no luck.

    &#xA;