Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (53)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (3951)

  • doc : switch github urls to https

    12 mars 2014, par Michael Niedermayer
    doc : switch github urls to https
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/platform.texi
    • [DH] doc/protocols.texi
  • Révision 92550 : maj chaine de langue https://core.spip.net/issues/3437

    30 octobre 2015, par erational@erational.org
  • c++ ffmpeg api get video stream from https link

    16 avril 2014, par Chabloz

    I'm trying to read https video link using the function av_format_open_input() but the function return a negative value.
    Here is my code :

    av_register_all();
    avcodec_register_all();
    avformat_network_init();
    const char * url = "https://r1---sn ...";

    AVFormatContext * pFormatCtx = avformat_alloc_context();

    int ret = avformat_open_input(&amp;pFormatCtx, url, NULL, NULL);

    This code worked with a local file as url but as soon as I give a https url it doesnt work anymore.
    thanks
    [edit]
    I found only this : ffserver.c
    But it uses a .ffm file as input. Any exemple or help on how to implement HttpContext (if HttpContext is needed here) would be great.
    [update]
    I ended using libvlc which seems to be much easier but the way to do it using ffmpeg could still be interesting. See my other post if interested : Get frame from video with libvlc smem and convert it to opencv Mat. (c++)