Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (42)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Révision 22444 : Report de r22443 : Complement a r22441 : ne pas lever le flag en cas de find_in_p...

    27 octobre 2015, par cedric@yterium.com
  • FFMPEG Live Stream Capturing : Any option to find stream is down ?

    27 octobre 2015, par Naeem Ur Rehman

    I am capturing live video stream using ffmpeg through the following command :

    ffmpeg -re -i STREAM_URL -t 3600 c :/test.mp4

    Is there any opetion in ffmpeg that generate a message whenever the stream is down

  • FFmpeg : HLS options cannot be set/get/find

    4 septembre 2013, par user2677612

    We are using FFmpeg libraries git-ee94362 libavformat v55.2.100.
    We are trying to write a simple HLS code example based on muxing.c standard one.
    Let be two input streams, video and audio (they can be synthetic, doesn't matter).
    Our purpose is to mux them into M3U8 playlist using HLS.
    Suppose, duration of every TS segment file be 3 sec, and the desirable maximum number of entries in M3U8 output file be 100.

    From the FFmpeg application sources, one can see that the Apple HTTP Live Streaming segmenter implemented in hlsenc.c file.
    And the relevant options there are, as well : "hls_list_size", "hls_time", etc.
    The problem is that we have not succeeded to set/get/find these options in a conventional way, as shown in the following code :


    // Here is a part of main() program

    int64_t i1 = 0;
    void *target_obj;

    AVFormatContext *ofmt_ctx = NULL;
    AVOutputFormat *ofmt = NULL;

    avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, "Example_Out.m3u8");

    ofmt = ofmt_ctx->oformat;

    // The relevant options ("hls_list_size", "hls_time") are located under ofmt->priv_class->option.
    // But AVClass *priv_class is not the first member of the AVOutputFormat.
    // So, due to the documentation, av_opt_find...(), av_opt_get...() and av_opt_set...()
    // cannot be used for options within AVOutputFormat.
    // In practice, any of the following three lines causes exception.
    const AVOption *o = av_opt_find2(ofmt, "hls_list_size", NULL, 0, AV_OPT_SEARCH_CHILDREN, &target_obj);
    av_opt_get_int(ofmt, "hls_list_size", AV_OPT_SEARCH_CHILDREN, &i1);
    av_opt_set_int(ofmt, "hls_list_size", 10, AV_OPT_SEARCH_CHILDREN);

    Our question : If there is a way to overcome the problem, i.e. to set/get/find options for AVOutputFormat, like for AVCodecContext (for example) ?

    Thank you,

    Andrey Mochenov.