Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (63)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (9620)

  • 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
  • Support YA16 in jpeg 2000.

    1er février 2015, par Carl Eugen Hoyos
    Support YA16 in jpeg 2000.
    
    • [DH] libavcodec/jpeg2000dec.c
    • [DH] libavcodec/libopenjpegdec.c
    • [DH] libavcodec/libopenjpegenc.c
    • [DH] libavcodec/version.h
  • ffmpeg decode JPEG 2000 in multithread

    30 septembre 2015, par mattobob

    So, I have a Video-decoder written in c++ whit help of ffmpeg library, non problem till when it comes to decode JPEG 2000 frame in multi threads, in this case the image is discontinuous, I set the context to have even number of threads and to process image slices :

       m->context->thread_count = m_cfgHhiThreads->value();
       m->context->thread_type = FF_THREAD_SLICE;

    here is a sample image captured after decoding process (dimension is fine), this only happen if multithred is set enter image description here

    Question is, why is this happening ?

    FFMPEG does not report any error, it actually think that the image has been correctly decoded. It is also correctly decoded the problem is in slicing.