Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (56)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6215)

  • movenc : Add a unit test for signaling of the track start times

    10 novembre 2015, par Martin Storsjö
    movenc : Add a unit test for signaling of the track start times
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc-test.c
    • [DBH] tests/ref/fate/movenc
  • 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 ?

  • 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 ?