Recherche avancée

Médias (91)

Autres articles (22)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (6042)

  • configure : fall back to using full path if src is a directory

    26 janvier 2016, par Andreas Cadhalpun
    configure : fall back to using full path if src is a directory
    

    Or when building in-tree.
    Also don’t try to remove src on distclean in these cases.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] Makefile
    • [DH] configure
  • Anomalie #3863 : liste de tous les plugins dans les résultats de recherche du back-office

    25 novembre 2016, par b b

    gogogo :)

  • Configuration of video device failed, falling back to default

    4 février 2021, par hgwd

    I'm writing a program to open my mac osx's facetime hd camera and get h264 data with ffmpeg, but i encounter encounter a hard problem at the first step.

    &#xA;

    AVFormatContext *Producer::OpenCamera()&#xA;{&#xA;    AVFormatContext *pContext = avformat_alloc_context();&#xA;    AVInputFormat *infmt = av_find_input_format("avfoundation");&#xA;    if (infmt != nullptr)&#xA;    {&#xA;        AVDictionary *paramDict = nullptr;&#xA;        av_dict_set(&amp;paramDict, "video_device_index", "1", 0);&#xA;        av_dict_set(&amp;paramDict, "video_size", "1280x720", 0);&#xA;        av_dict_set(&amp;paramDict, "framerate", "30", 0);&#xA;        av_dict_set(&amp;paramDict, "pixel_format", "yuyv422", 0);&#xA;&#xA;        int ret = avformat_open_input(&amp;pContext, "0", infmt, &amp;paramDict);&#xA;        if (ret != 0)&#xA;        {&#xA;            std::cout &lt;&lt; "cannot open input" &lt;&lt; std::endl;&#xA;            avformat_free_context(pContext);&#xA;            return nullptr;&#xA;        }&#xA;    }&#xA;&#xA;    return pContext;&#xA;}&#xA;

    &#xA;

    When I call the function, I get the result below :

    &#xA;

    &#x27;&#x27; opened&#xA;Configuration of video device failed, falling back to default.&#xA;

    &#xA;

    Addtionally, when I set av_dict_set(&paramDict, "video_device_index", "0", 0) ; I'll get sig abort, which makes me confused. Can anyone help me ?

    &#xA;