Recherche avancée

Médias (91)

Autres articles (35)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3638)

  • Anomalie #4345 (Nouveau) : super_cron HS en https

    11 juin 2019, par jluc -

    action_super_cron_dist appelle fsockopen avec le port 80 par défaut, si l’url issue de genererl_url_action ne spécifie pas le port (c’est à dire la plupart du temps).

    sur un site en https ça échoue (éventuellement ça renvoie une 301 mais fsockopen ne les suit pas)

    Faute de parvenir à proposer une PR git, voici un patch à l’ancienne qui corrige ça en testant si http ou https.

    En plus, il loge les échecs de fsockopen afin de pas avoir une partie silencieuse de SPIP qui ne marche pas.
    Et il teste aussi le statut renvoyé. Cette partie peut être supprimée si nécessaire.

  • lavf/matroskaenc.c : add early support for colour elements

    7 mars 2016, par Neil Birkbeck
    lavf/matroskaenc.c : add early support for colour elements
    

    Adding early support for a subset of the proposed colour elements
    according to the latest version of spec :
    https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&index=hIKLhMdgTMTEwUTeA4ct38h0tmE

    Like matroskadec, I’ve left out elements for pix_fmt related things
    as there still seems to be some discussion around these.

    The new elements are exposed under strict experimental mode.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskaenc.c
  • 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++)