
Recherche avancée
Autres articles (57)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (6728)
-
FFMPEG avformat_open_input returns unpopulated Format context
21 avril 2013, par Michael IVI am trying to load avi and flv files programatically with FFMPEG API.The files seem to get loaded because avformat_open_input doesn't return 0 .But when inspecting AVFormatContext variable for every property in the inspector I am getting just "Unable to read memory" .Here is how I do it :
av_register_all();
avcodec_register_all();
AVFormatContext *pFormatCtx=avformat_alloc_context();
if(avformat_open_input(&pFormatCtx,"assest/comp1.avi",NULL,NULL) !=0)
{
printf("%s","Movie load Success");
}else{
printf("%s","Movie load Fail");
}I am using VisualStudio 2010 C++ compiler .Windows 7.
UPDATE :
Ok ,Please discard this question.I found the error.It was a stupid typo in the file directory path.
-
rtsp : Use AVERROR() with errno.h error codes for error returns
11 décembre 2019, par Martin Storsjö -
avformat : introduce AVFormatContext io_close2 which returns an int
30 novembre 2021, par Marton Balintavformat : introduce AVFormatContext io_close2 which returns an int
Otherwise there is no way to detect an error returned by avio_close() because
ff_format_io_close cannot get the return value.Checking the return value of the close function is important in order to check
if all data was successfully written and the underlying close() operation was
successful.It can also be useful even for read mode because it can return any pending
AVIOContext error, so the user don't have to manually check AVIOContext->error.In order to still support if the user overrides io_close, the generic code only
uses io_close2 if io_close is either NULL or the default io_close callback.Signed-off-by : Marton Balint <cus@passwd.hu>