Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (49)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (7516)

  • Reading encoded data using muxing in ffmpeg

    2 mai 2017, par Sanduni Wickramasinghe

    I am trying to read an encoded video using ffmpeg c++. When I try to build my code error appears as identifier options is undefined. But it is already defined as AVDictionary *options = NULL.

    What is wrong with my code ?

    void CFfmpegmethods::VideoRead(){

       const char *url = "H:/Sanduni_projects/ad_2.mp4";

       AVFormatContext *s = NULL;
       int ret = avformat_open_input(&s, url, NULL, NULL);
       if (ret < 0)
           abort();

       avformat_find_stream_info(s, &options);

       AVDictionary *options = NULL;

       av_dict_set(&options, "video_size", "640x480", 0);
       av_dict_set(&options, "pixel_format", "rgb24", 0);

       if (avformat_open_input(&s, url, NULL, &options) < 0){
           abort();
       }

       av_dict_free(&options);

       AVDictionaryEntry *e;

       if (e = av_dict_get(options, "", NULL, AV_DICT_IGNORE_SUFFIX)) {
           fprintf(stderr, "Option %s not recognized by the demuxer.\n", e->key);
           abort();
       }

       avformat_close_input(&s);
    }
  • x86/intmath : add VEX encoded versions of av_clipf() and av_clipd()

    16 novembre 2021, par James Almer
    x86/intmath : add VEX encoded versions of av_clipf() and av_clipd()
    

    Prevents mixing inlined SSE instructions and AVX instructions when the compiler
    generates the latter.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/x86/intmath.h
  • avcodec/lcldec : initialize encoded correctly

    14 août 2014, par Michael Niedermayer
    avcodec/lcldec : initialize encoded correctly
    

    Fixes out of array read
    Fixes : yuv111_no_compr_crash.avi

    Found-by : Piotr Bandurski <ami_stuff@o2.pl>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/lcldec.c