Recherche avancée

Médias (17)

Mot : - Tags -/wired

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 (10767)

  • configuring android to run ffmpeg command programmatically

    16 juillet 2013, par Abdul Mateen

    I am unaware with ffmpeg, and wants to run ffmpeg command on android terminal.
    What are the basic steps to configure android so that it can run ffmpeg command through android application program ?

    Thanking you !...

  • Convert MPEG4/H264 I-Frame (IDR) from RTP stream to JPG ? [on hold]

    10 mars 2017, par ioan ghip

    I’m playing around with MPEG4/H264 received over RTP and I can successfully detect and receive I-Frames. My plan is to convert the I-Frames to JPG and show them on the screen (ultimately I want to implement basic rtp support for Roku player).
    Where do I start ? Any code examples or algorithm description on how to convert the the video frames to an image ?

  • avcodec/ffv1dec : fix some unsupported pix_fmt

    13 juin 2016, par Jérôme Martinez
    avcodec/ffv1dec : fix some unsupported pix_fmt
    

    When checking pix_fmt mapping, some bitstreams are mapped to an
    incorrect pix_fmt instead of being rejected (ENOSYS).
    Actually, such bitstreams are not supported (FFmpeg encoder does not
    produce such bitstream, such bitstream may come only from another
    encoder for the moment).

    - JPEG 2000 RCT 11/13/15/16 bit depths are mapped to a 8-bit FFmpeg
    pix_fmt (e.g. bgr0), which is not expected.
    - JPEG 2000 RCT 9/10/12/14 bit depths with alpha are mapped to a
    FFmpeg pix_fmt without alpha (e.g. AV_PIX_FMT_GBRP9 for 9-bit with
    alpha), which is not expected.

    The order for choosing the pix_fmt is changed to the one used by YCbCr
    selection (<=8 bit first).
    " && !f->transparency" is added to the other lines.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1dec.c