Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (78)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (3821)

  • Merge remote-tracking branch ’cus/stable’

    6 novembre 2013, par Michael Niedermayer
    Merge remote-tracking branch ’cus/stable’
    

    * cus/stable :
    ffplay : add smarter method for determining video picture duration
    ffplay : add frame duration estimated from frame rate to VideoPicture
    ffplay : avoid code duplication in AVFILTER enabled and disabled case

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

    • [DH] ffplay.c
  • AccessViolationException in ffmpeg (called from .NET with FFmpeg.AutoGen)

    13 septembre 2022, par zgabi

    I'm trying to "download"/stream an RTSP stream with FFmpeg.Autogen. I receive an AccessViolationException before the actual stream begins.

    &#xA;

    I tried multiple FFmpeg and FFmpeg.AutoGen version (for example the latest stable FFMpeg version 5.1.1 from gyan.dev site and the latest FFmpeg.Autogen : 5.1.1). I also tried version 4.x (of course both ffmpeg and FFmpeg.AutoGen)

    &#xA;

    This code works with a lot of Hikvision camera streams, I get the Access Violation with an expensive InfiRay thermal camera. (But anyway if it sends some corrupt data, ffmpeg should not crash.)

    &#xA;

    My code is (this is only the initialization, since the problem occures there) :

    &#xA;

    av_log_set_level(AV_LOG_DEBUG);&#xA;&#xA;AVFormatContext* cf = null;&#xA;&#xA;try&#xA;{&#xA;    cf = avformat_alloc_context();&#xA;    if (cf == null)&#xA;    {&#xA;        throw new Exception("Could not allocate the format context");&#xA;    }&#xA;&#xA;    int probeSize = 32768 * 2;&#xA;    cf->probesize = probeSize;&#xA;&#xA;    AVDictionary* options = null;&#xA;    string probeSizeStr = probeSize.ToString();&#xA;    av_dict_set(&amp;options, "analyzeduration", probeSizeStr, 0);&#xA;    av_dict_set(&amp;options, "probesize", probeSizeStr, 0);&#xA;    av_dict_set(&amp;options, "rtsp_transport", "tcp", 0);&#xA;&#xA;    string url =&#xA;        "rtsp://horizontetest:horizontetest@122.5.39.146:7828/cam/realmonitor?channel=1&amp;subtype=1&amp;unicast=true&amp;proto=Onvif";&#xA;    int ret = avformat_open_input(&amp;cf, url, null, &amp;options);&#xA;    if (ret != 0)&#xA;    {&#xA;        throw new Exception("Could not open the input");&#xA;    }&#xA;&#xA;    ret = avformat_find_stream_info(cf, &amp;options);&#xA;    Console.WriteLine(probeSizeStr);&#xA;    if (ret &lt; 0)&#xA;    {&#xA;        throw new Exception("Could not find stream info");&#xA;    }&#xA;&#xA;    if (cf->streams == null)&#xA;    {&#xA;        throw new Exception("Could not find stream");&#xA;    }&#xA;}&#xA;finally&#xA;{&#xA;    if (cf != null)&#xA;    {&#xA;        avformat_close_input(&amp;cf);&#xA;    }&#xA;}&#xA;

    &#xA;

    Access Violation occures in the avformat_find_stream_info call.

    &#xA;

  • fate : add simple test for async

    29 mai 2014, par Michael Niedermayer
    fate : add simple test for async
    

    This only checks that things havnt changed, the values provide little
    help in determining if a change is good or bad.

    Improvements welcome !

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

    • [DH] tests/fate/libswresample.mak