Recherche avancée

Médias (91)

Autres articles (105)

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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5361)

  • Simple Build of Libavcodec.so and libavformat.so on Mac

    11 mai 2013, par Dave Lowerre

    Who needs ffmpeg ? Not me. What I need is to be able to decode a video stream along with its audio stream, so that can put the frames on an opengl surface in sync with the audio.

    FFmpeg is a tool that transcodes video. That is not what I need. I need its libraries.

    The problem is that every example for building FFmpeg includes junk I just dont need. The latest example I wasted my time on :

    https://github.com/appunite/AndroidFFmpeg

    uses things like freetype2 that I really, REALLY, do not need. Whats more annoying is that it wont even build as described because the example references freetype, not freetype2 so the build steps are broken. Don't even get me started on the problems I had with libtool.

    The kicker is finding libav.org, where they describe on their about page the chaos in the ffmpeg project. Perhaps that is why this is so difficult.

    So, should it be so hard to build just the shared libs ? Can someone point me to some documentation, or a tutorial that works ? I admit that this is new territory for me but all I have found using Google is chaos.

  • Further updates to the Makefile.lite build system.

    27 juin 2014, par Evan Ramos
    Further updates to the Makefile.lite build system.
    

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] Makefile.deps
    • [DH] Makefile.lite
    • [DH] build/compile.mk
    • [DH] build/config.mk
    • [DH] build/lib.mk
    • [DH] src/Makefile.lite
    • [DH] src/plugin_common/Makefile.lite
  • How to build static library based on existing Live555+FFmpeg

    30 mars 2016, par SCK

    I am trying to build an .a static library (named foo.a) based on Live555 & FFmpeg.

    So that my OS X app can use foo.a to do RTSP streaming.

    If my app use live555 and/or FFmpeg directly, it works great
    .Picture1, but I don’t want to use them directly, that’s why I’m trying to build foo.a

    If I build foo.a that wraps live555.a and my custom source code, it also works too.

    But If I build foo.a that wraps live555.a and ffmpeg and my custom source code
    Picture2

    When I build OS X app (which is now using foo.a), I got the following error :

    Undefined symbols for architecture x86_64 : "avcodec_version()",
    referenced from : startStreaming() in libFoo.a(Facade.o) ld : symbol(s)
    not found for architecture x86_64 clang : error : linker command failed
    with exit code 1 (use -v to see invocation)

    Any suggestions would be appreciated !