
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (22)
-
Submit bugs and patches
13 avril 2011Unfortunately 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, parThe 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, parMediaspip 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 -
Anomalie #3863 : liste de tous les plugins dans les résultats de recherche du back-office
25 novembre 2016, par b bgogogo :)
-
Configuration of video device failed, falling back to default
4 février 2021, par hgwdI'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.


AVFormatContext *Producer::OpenCamera()
{
 AVFormatContext *pContext = avformat_alloc_context();
 AVInputFormat *infmt = av_find_input_format("avfoundation");
 if (infmt != nullptr)
 {
 AVDictionary *paramDict = nullptr;
 av_dict_set(&paramDict, "video_device_index", "1", 0);
 av_dict_set(&paramDict, "video_size", "1280x720", 0);
 av_dict_set(&paramDict, "framerate", "30", 0);
 av_dict_set(&paramDict, "pixel_format", "yuyv422", 0);

 int ret = avformat_open_input(&pContext, "0", infmt, &paramDict);
 if (ret != 0)
 {
 std::cout << "cannot open input" << std::endl;
 avformat_free_context(pContext);
 return nullptr;
 }
 }

 return pContext;
}



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


'' opened
Configuration of video device failed, falling back to default.



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