Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (52)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (10017)

  • Compiling FFMpeg libraries for Visual Studio

    20 janvier 2015, par LostBoy

    I’m trying to use the FFMpeg libraries in a Windows application. I use MingW-w64 to compile FFMpeg with static libraries with architecture once with x86 and once with x86_64.
    Currently I’m trying to link the 32bit x86 libraries with my VS2008 application.
    The libraries are added to the library path and VS does not complain about being unable to load a .a file.

    However I get several uneresolved symbol errors like
    ait_rtp_receiver.lib(ait_decoder_lib.obj) : error LNK2001 : unresolved external symbol _av_free

    I import the FFMpeg header files as extern C and I can see the symbols in the .a without the leading underscore.
    What can I do to make the name decoration of Mingw-w64’s gcc and of the VS compiler suite compatible ?

  • Linking libavformat in Visual Studio 2010

    30 octobre 2012, par slavik262

    I'm attempting to build some video-reading code around libavformat. After getting the compiled DLLs and .lib files here, I go to build my code, and the linker can't find any of the libavformat symbols even though I've linked in the provided .lib files.

    Inspecting libavformat.lib with dumpbin -headers reveals that it exports the desired functions with an underscore prefix. For example, while I want to call avformat_open_input, the .lib file gives _avformat_open_input.

    Why is this, and why can't I link the precompiled dlls ?

  • ffmpeg C API documentation/tutorial for capturing then store video from webcam

    26 janvier 2017, par Ahmed Mkadem

    I’m trying to use ffmpeg library to make a software with C that would capture a video from webcam and store it.
    But it seems that only command line documentation is available for this pupose.
    I visited this link : http://dranger.com/ffmpeg/ and also this one https://github.com/phamquy/FFmpeg-tutorial-samples but they only offer tutorials about creating a video player in C.

    Any help please to find some sources/tutorials/documentation on video stream capturing from webcam using ffmpeg’s library.