Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (30)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • Latest download, minor UI tweaks

    28 mai 2012, par Scott Schiller

    m doc/download/index.html Latest download, minor UI tweaks

  • ffmpeg avformat_open_input with custom stream object

    26 avril 2017, par trigger_death

    I’m currently trying to write a custom SoundFileReader for SFML using ffmpeg’s libraries. The only thing I have available to use with avcodec and avformat is the class InputStream below which is part of SFML. I’ve looked at avformat_open_input and AVIOContext and I learned how to use custom stream with a buffer but how do I create an AVIOContext that works with the custom read, seek, and lseek functions ?

    class InputStream {
       int64_t getSize()
       int64_t read(void* data, int64_t size);
       int64_t seek(int64_t position);
       int64_t tell(); // Gets the stream position
    };
  • avformat_open_input returns -2 (Android)

    13 octobre 2020, par Ivelius

    I'm using this FFMPEG port for Android.
My Goal is to read RTSP stream eventually.

    



    I can open a stream from a local file (located at "/storage/emulated/0/bunny.mp4") ,
using *avformat_open_input* function.

    



    However when I try to open the same file from remote location like *"http_ ://192.168.1.183/bunny.mp4*" , it returns error -2 .

    



    The whole cpp code is here.

    



    Any ideas ?